diff options
Diffstat (limited to 'roles/tools/files/vimrc')
-rw-r--r-- | roles/tools/files/vimrc | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/roles/tools/files/vimrc b/roles/tools/files/vimrc index 3c61621..3ce13d1 100644 --- a/roles/tools/files/vimrc +++ b/roles/tools/files/vimrc | |||
@@ -30,6 +30,8 @@ Plug 'vim-scripts/slapd.vim' | |||
30 | Plug 'vimwiki/vimwiki', { 'branch': 'dev' } | 30 | Plug 'vimwiki/vimwiki', { 'branch': 'dev' } |
31 | Plug 'vim-vdebug/vdebug' | 31 | Plug 'vim-vdebug/vdebug' |
32 | Plug 'tpope/vim-fugitive' | 32 | Plug 'tpope/vim-fugitive' |
33 | Plug 'tpope/vim-rhubarb' | ||
34 | Plug 'shumphrey/fugitive-gitlab.vim' | ||
33 | Plug 'tomlion/vim-solidity' | 35 | Plug 'tomlion/vim-solidity' |
34 | Plug 'chrisbra/SudoEdit.vim' | 36 | Plug 'chrisbra/SudoEdit.vim' |
35 | Plug 'Chiel92/vim-autoformat' | 37 | Plug 'Chiel92/vim-autoformat' |
@@ -37,6 +39,9 @@ Plug 'pearofducks/ansible-vim' | |||
37 | Plug 'juliosueiras/vim-terraform-completion' | 39 | Plug 'juliosueiras/vim-terraform-completion' |
38 | Plug 'sjl/gundo.vim' | 40 | Plug 'sjl/gundo.vim' |
39 | Plug 'LnL7/vim-nix' | 41 | Plug 'LnL7/vim-nix' |
42 | Plug 'purescript-contrib/purescript-vim' | ||
43 | Plug 'vmchale/dhall-vim' | ||
44 | Plug 'junegunn/fzf' | ||
40 | 45 | ||
41 | call plug#end() | 46 | call plug#end() |
42 | 47 | ||
@@ -297,6 +302,7 @@ map <C-\> :tab split<CR>:exec("tag ".expand("<cword>"))<CR> | |||
297 | map <A-]> :vsp <CR>:exec("tag ".expand("<cword>"))<CR> | 302 | map <A-]> :vsp <CR>:exec("tag ".expand("<cword>"))<CR> |
298 | 303 | ||
299 | let g:ctrlp_extensions = ['tag', 'buffertag', 'dir', 'undo', 'line'] | 304 | let g:ctrlp_extensions = ['tag', 'buffertag', 'dir', 'undo', 'line'] |
305 | let g:ctrlp_max_files = 0 | ||
300 | set modeline | 306 | set modeline |
301 | 307 | ||
302 | set grepprg=grep\ -rn\ $*\ /dev/null | 308 | set grepprg=grep\ -rn\ $*\ /dev/null |
@@ -308,4 +314,3 @@ endif | |||
308 | 314 | ||
309 | set list | 315 | set list |
310 | set listchars=tab:>-,trail:- | 316 | set listchars=tab:>-,trail:- |
311 | |||