nvim: Update neovim configuration
Add fzf and magit. Remove unused plugins. Signed-off-by: Sanchayan Maity <maitysanchayan@gmail.com>
This commit is contained in:
parent
f829682e83
commit
feab565164
1 changed files with 4 additions and 4 deletions
|
@ -11,13 +11,11 @@ Plug 'ervandew/supertab'
|
||||||
Plug 'neovimhaskell/haskell-vim', { 'for': [ 'haskell', 'cabal' ] }
|
Plug 'neovimhaskell/haskell-vim', { 'for': [ 'haskell', 'cabal' ] }
|
||||||
" Lisp
|
" Lisp
|
||||||
Plug 'vim-scripts/paredit.vim', { 'for': [ 'scheme', 'lisp', 'commonlisp' ] }
|
Plug 'vim-scripts/paredit.vim', { 'for': [ 'scheme', 'lisp', 'commonlisp' ] }
|
||||||
" LaTeX Editing
|
|
||||||
Plug 'LaTeX-Box-Team/LaTeX-Box'
|
|
||||||
" EasyMotion - Allows <leader><leader>(b|e) to jump to (b)eginning or (end)
|
" EasyMotion - Allows <leader><leader>(b|e) to jump to (b)eginning or (end)
|
||||||
" of words.
|
" of words.
|
||||||
Plug 'easymotion/vim-easymotion'
|
Plug 'easymotion/vim-easymotion'
|
||||||
" Ctrl-P - Fuzzy file search
|
" Fuzzy file search
|
||||||
Plug 'kien/ctrlp.vim'
|
Plug 'junegunn/fzf.vim'
|
||||||
" Remove extraneous whitespace when edit mode is exited
|
" Remove extraneous whitespace when edit mode is exited
|
||||||
Plug 'thirtythreeforty/lessspace.vim'
|
Plug 'thirtythreeforty/lessspace.vim'
|
||||||
" Status bar mods
|
" Status bar mods
|
||||||
|
@ -45,6 +43,8 @@ Plug 'rust-lang/rust.vim'
|
||||||
Plug 'tmux-plugins/vim-tmux-focus-events'
|
Plug 'tmux-plugins/vim-tmux-focus-events'
|
||||||
" For LaTeX support
|
" For LaTeX support
|
||||||
Plug 'donRaphaco/neotex', { 'for': 'tex' }
|
Plug 'donRaphaco/neotex', { 'for': 'tex' }
|
||||||
|
" For git support
|
||||||
|
Plug 'jreybert/vimagit'
|
||||||
|
|
||||||
" Initialize plugin system
|
" Initialize plugin system
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
Loading…
Reference in a new issue