vim: add csv plugin

feature/improve-speed
bretello 2021-03-15 10:38:49 +01:00
parent d20c511105
commit 3bab8cd959
Signed by: brethil
GPG Key ID: 876AAC6290170FE7
2 changed files with 6 additions and 0 deletions

View File

@ -11,6 +11,8 @@ call plug#begin('~/.vim/vim-plug')
Plug 'tpope/vim-sensible'
" Colorscheme
Plug 'https://github.com/morhetz/gruvbox'
" Csv files 🤦"
Plug 'https://github.com/chrisbra/csv.vim'
" Asynchronous Linting Engine
Plug 'https://github.com/dense-analysis/ale'
" Open files/recent files/tags quickly

View File

@ -99,6 +99,10 @@ map <leader>t :CtrlPTag<CR>
map <leader>l :CtrlPLine<CR>
map <leader>c :CtrlPQuickfix<CR>
"" CSV
" highlight current column
map <leader>hc :HiColumn<CR>
"" Indent Guides
map <leader>I :IndentGuidesToggle<CR>