diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-02-28 16:06:34 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-02-28 20:50:27 +0100 |
| commit | 9a330ae3cbeff95f6e02a2503ebd6d24f6024637 (patch) | |
| tree | 6c8ff8723171aa5ceef0507f8b2a0da1bd43d851 /config/vim/pluggins.vim | |
| parent | 0ff69c458aece56a99c7979975bbeef5de28dd13 (diff) | |
| download | dotfiles-9a330ae3cbeff95f6e02a2503ebd6d24f6024637.tar.gz dotfiles-9a330ae3cbeff95f6e02a2503ebd6d24f6024637.tar.bz2 dotfiles-9a330ae3cbeff95f6e02a2503ebd6d24f6024637.zip | |
Switch to fzf.vim instead of ctrlp.vim, Added rc and vf alias for selecting file from dotfiles or current directory
Diffstat (limited to 'config/vim/pluggins.vim')
| -rw-r--r-- | config/vim/pluggins.vim | 18 |
1 files changed, 8 insertions, 10 deletions
diff --git a/config/vim/pluggins.vim b/config/vim/pluggins.vim index 0915f42..8bd1cf0 100644 --- a/config/vim/pluggins.vim +++ b/config/vim/pluggins.vim @@ -3,7 +3,7 @@ """""""""""""""" call plug#begin($XDG_DATA_HOME . '/vim/plugged') - Plug 'ctrlpvim/ctrlp.vim' " Ctrl-P similar to vsc + Plug 'junegunn/fzf.vim' " file name/tags fuzzy finder (depends on fzf) Plug 'tpope/vim-eunuch' " basic unix command in vim Plug 'tomtom/tcomment_vim' " mininal commenter Plug 'itchyny/lightline.vim' " minimal status bar @@ -14,8 +14,6 @@ call plug#begin($XDG_DATA_HOME . '/vim/plugged') Plug 'ludovicchabant/vim-gutentags' " generate tags in project root Plug 'junegunn/goyo.vim' " generate tags in project root - " Plug 'easymotion/vim-easymotion' " TODO very intresting - " Plug 'mhinz/vim-rfc' " RFC download/syntax/tags Plug 'skammer/vim-css-color' " markdown preview in browser @@ -27,20 +25,20 @@ call plug#begin($XDG_DATA_HOME . '/vim/plugged') Plug 'ziglang/zig.vim' " zig Plug 'nikvdp/ejs-syntax' " ejs - " s19 at home - Plug 'cacharle/vim-42header' " 42 header - " themes " Plug 'joshdick/onedark.vim' " onedark Plug 'dracula/vim', {'as': 'vim'} " dracula Plug 'altercation/vim-colors-solarized' " solarized " intresting but not used - " Plug 'sheerun/vim-polyglot' " better syntax highlight - " Plug 'unblevable/quick-scope' " highlight first char to jump to word - " Plug 'jez/vim-superman' " man pages in vim (too slow) Plug 'vim-scripts/rfc-syntax' " rfc - " Plug 'tacahiroy/ctrlp-funky' " extension to search function + + " my plugins Plug 'cacharle/c_formatter_42.vim' Plug 'cacharle/doxy42.vim' + + " s19 at home + Plug 'cacharle/vim-42header' " 42 header + + " Plug 'ctrlpvim/ctrlp.vim' " Ctrl-P similar to vsc call plug#end() |
