From 3bab8cd95961fe6eb4260e2b8306fa6eb05ebf71 Mon Sep 17 00:00:00 2001 From: bretello Date: Mon, 15 Mar 2021 10:38:49 +0100 Subject: [PATCH] vim: add csv plugin --- vim/plugs.vim | 2 ++ vim/shortcuts.vim | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/vim/plugs.vim b/vim/plugs.vim index 1ba8069..962e3ef 100644 --- a/vim/plugs.vim +++ b/vim/plugs.vim @@ -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 diff --git a/vim/shortcuts.vim b/vim/shortcuts.vim index 18c1ff6..a4f4989 100644 --- a/vim/shortcuts.vim +++ b/vim/shortcuts.vim @@ -99,6 +99,10 @@ map t :CtrlPTag map l :CtrlPLine map c :CtrlPQuickfix +"" CSV +" highlight current column +map hc :HiColumn + "" Indent Guides map I :IndentGuidesToggle