Add fzf
This commit is contained in:
parent
9c56342e6d
commit
a85df04e8f
2 changed files with 14 additions and 11 deletions
|
@ -26,9 +26,9 @@ autocmd FileType markdown set wrap
|
||||||
autocmd FileType tex set wrap
|
autocmd FileType tex set wrap
|
||||||
|
|
||||||
" Set tabbing to depth 2 and always use spaces.
|
" Set tabbing to depth 2 and always use spaces.
|
||||||
set tabstop=2
|
set tabstop=4
|
||||||
set softtabstop=2
|
set softtabstop=4
|
||||||
set shiftwidth=2
|
set shiftwidth=4
|
||||||
set expandtab
|
set expandtab
|
||||||
set smarttab
|
set smarttab
|
||||||
set autoindent
|
set autoindent
|
||||||
|
@ -49,4 +49,6 @@ au CursorHoldI * checktime
|
||||||
|
|
||||||
set wildignore +=*/tmp/*,*.pyc,*/__pycache__/*
|
set wildignore +=*/tmp/*,*.pyc,*/__pycache__/*
|
||||||
|
|
||||||
" TODO: add auto whitespace stripping
|
nmap <leader>b :Buffers<CR>
|
||||||
|
nmap <leader>f :Files<CR>
|
||||||
|
|
||||||
|
|
|
@ -21,17 +21,18 @@ Plug 'vimwiki/vimwiki'
|
||||||
" add a ton of colorschemes to pick from
|
" add a ton of colorschemes to pick from
|
||||||
Plug 'flazz/vim-colorschemes'
|
Plug 'flazz/vim-colorschemes'
|
||||||
|
|
||||||
|
" Better session handling
|
||||||
Plug 'tpope/vim-obsession'
|
Plug 'tpope/vim-obsession'
|
||||||
|
|
||||||
" [submodule "vim/.vim/bundle/ctrlp"]
|
" Use common config to setup tab depth
|
||||||
" path = vim/.vim/bundle/ctrlp
|
Plug 'editorconfig/editorconfig-vim'
|
||||||
" url = https://github.com/ctrlpvim/ctrlp.vim
|
|
||||||
"
|
" Find files in a fuzzy way
|
||||||
|
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --bin' } " fzf binary
|
||||||
|
Plug 'junegunn/fzf.vim' " fzf vim plugin
|
||||||
|
|
||||||
|
|
||||||
" Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --bin' } " fzf binary
|
|
||||||
" Plug 'junegunn/fzf.vim' " fzf vim plugin
|
|
||||||
" Plug 'shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins', 'commit': '865747efe41ea1d923758617d71e8e5b59da292e' } " Auto-completion
|
" Plug 'shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins', 'commit': '865747efe41ea1d923758617d71e8e5b59da292e' } " Auto-completion
|
||||||
" Plug 'tpope/vim-obsession' " Save and restore sessions
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue