config/nvim/init/plug: add indent-detector
This commit is contained in:
parent
695a31f19e
commit
afd0f03c9a
|
@ -39,11 +39,11 @@ Plug 'ntpeters/vim-better-whitespace' " Tools for trailing whitespace & mixed in
|
||||||
|
|
||||||
" Aesthetic
|
" Aesthetic
|
||||||
Plug 'vim-airline/vim-airline' " Status bar on the bottom
|
Plug 'vim-airline/vim-airline' " Status bar on the bottom
|
||||||
set noshowmode " Don't show current mode because airline already does and it inhibits echo in visual mode
|
set noshowmode " Don't show current m ode because airline already does and it inhibits echo in visual mode
|
||||||
Plug 'romainl/vim-cool' " Automatically stop highlighting search results when moving - https://stackoverflow.com/questions/657447/vim-clear-last-search-highlighting
|
Plug 'romainl/vim-cool' " Automatically stop highlighting search results when moving - https://stackoverflow.com/questions/657447/vim-clear-last-search-highlighting
|
||||||
Plug 'airblade/vim-gitgutter' " Git info on the left
|
Plug 'airblade/vim-gitgutter' " Git info on the left
|
||||||
" Highlight color literals
|
Plug 'norcalli/nvim-colorizer.lua' " Highlight color literals
|
||||||
Plug 'norcalli/nvim-colorizer.lua'
|
Plug 'luochen1990/indent-detector.vim' " Auto-detect indent
|
||||||
" Visual indent guides
|
" Visual indent guides
|
||||||
Plug 'nathanaelkane/vim-indent-guides'
|
Plug 'nathanaelkane/vim-indent-guides'
|
||||||
let g:indent_guides_enable_on_vim_startup = 1
|
let g:indent_guides_enable_on_vim_startup = 1
|
||||||
|
|
Loading…
Reference in New Issue