mirror of
https://github.com/Feliix42/dotfiles.git
synced 2024-11-21 22:06:29 +00:00
Fix fzf config in vim
This commit is contained in:
parent
82498258b6
commit
295ef2315d
2 changed files with 7 additions and 4 deletions
|
@ -18,22 +18,24 @@ Plug 'morhetz/gruvbox'
|
|||
" Any valid git URL is allowed
|
||||
Plug 'https://github.com/scrooloose/nerdcommenter.git'
|
||||
|
||||
" On-demand loading
|
||||
" On-demand loading for languages
|
||||
Plug 'rust-lang/rust.vim', { 'for': 'rust' }
|
||||
Plug 'cespare/vim-toml', { 'for': 'toml' }
|
||||
Plug 'keith/swift.vim', { 'for': 'swift' }
|
||||
|
||||
Plug 'vim-syntastic/syntastic'
|
||||
Plug 'cespare/vim-toml', { 'for': 'toml' }
|
||||
Plug 'vim-airline/vim-airline'
|
||||
Plug 'tpope/vim-fugitive'
|
||||
Plug 'airblade/vim-gitgutter'
|
||||
Plug 'keith/swift.vim', { 'for': 'swift' }
|
||||
Plug 'justinmk/vim-sneak'
|
||||
Plug 'lervag/vimtex'
|
||||
Plug 'editorconfig/editorconfig-vim'
|
||||
Plug 'LnL7/vim-nix'
|
||||
Plug 'preservim/nerdtree'
|
||||
|
||||
" Plugin outside ~/.vim/plugged with post-update hook
|
||||
Plug 'junegunn/fzf', { 'dir': '~/.fzf', 'do': './install --all' }
|
||||
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
|
||||
Plug 'junegunn/fzf.vim'
|
||||
|
||||
" ale language server client
|
||||
Plug 'dense-analysis/ale'
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
numpy
|
||||
pylint
|
||||
# rpy2
|
||||
jupyter
|
||||
];
|
||||
python-with-my-packages = python3.withPackages my-python-packages;
|
||||
in
|
||||
|
|
Loading…
Reference in a new issue