nvim: organize plugins, add kotlin plugin
This commit is contained in:
parent
4834d54818
commit
222357e93d
@ -7,16 +7,22 @@ endif
|
|||||||
" configure plugins using vim-plug
|
" configure plugins using vim-plug
|
||||||
" https://github.com/junegunn/vim-plug
|
" https://github.com/junegunn/vim-plug
|
||||||
call plug#begin('~/.cache/nvim/plugged')
|
call plug#begin('~/.cache/nvim/plugged')
|
||||||
Plug 'https://github.com/blankname/vim-fish' " fish scripting
|
|
||||||
Plug 'https://github.com/farmergreg/vim-lastplace' " intelligently reopen files at last edit position
|
" helpers
|
||||||
Plug 'https://github.com/junegunn/fzf' " fuzzy finder
|
Plug 'farmergreg/vim-lastplace' " intelligently reopen files at last edit position
|
||||||
Plug 'https://github.com/junegunn/fzf.vim' " fuzzy finder for vim
|
Plug 'junegunn/fzf' " fuzzy finder
|
||||||
Plug 'https://github.com/ntpeters/vim-better-whitespace' " highlights trailing whitespace, :StripWhitespace to remove
|
Plug 'junegunn/fzf.vim' " fuzzy finder for vim
|
||||||
Plug 'https://github.com/PeterRincker/vim-searchlight' " highlight current search match differently
|
Plug 'ntpeters/vim-better-whitespace' " highlight trailing whitespace, :StripWhitespace to remove
|
||||||
Plug 'https://github.com/rust-lang/rust.vim' " syntax highlighting, formatting for rust
|
Plug 'PeterRincker/vim-searchlight' " highlight current search match differently
|
||||||
Plug 'https://github.com/tpope/vim-sensible' " defaults everyone can agree on
|
Plug 'tpope/vim-sensible' " defaults everyone can agree on
|
||||||
Plug 'https://github.com/tpope/vim-sleuth' " heuristically set buffer options
|
Plug 'tpope/vim-sleuth' " heuristically set buffer options
|
||||||
Plug 'https://github.com/vim-airline/vim-airline' " fancy statusline
|
Plug 'vim-airline/vim-airline' " fancy statusline
|
||||||
|
|
||||||
|
" languages
|
||||||
|
Plug 'blankname/vim-fish' " fish
|
||||||
|
Plug 'rust-lang/rust.vim' " rust
|
||||||
|
Plug 'udalov/kotlin-vim' " kotlin
|
||||||
|
|
||||||
call plug#end()
|
call plug#end()
|
||||||
|
|
||||||
" Quickly edit/reload this configuration file
|
" Quickly edit/reload this configuration file
|
||||||
|
Loading…
x
Reference in New Issue
Block a user