1
0
mirror of https://git.decapod.one/brethil/dotfiles synced 2024-06-23 17:38:32 +02:00

vim: add <leader>I to toggle indent guides

This commit is contained in:
bretello 2021-01-07 16:14:41 +01:00
parent a6997cc37c
commit 6b97913926

View File

@ -83,6 +83,10 @@ map <leader>b :CtrlPBuffer<CR>
map <leader>f :CtrlPMRUFiles<CR> map <leader>f :CtrlPMRUFiles<CR>
map <leader>t :CtrlPTag<CR> map <leader>t :CtrlPTag<CR>
"" Indent Guides
map <leader>I :IndentGuidesToggle<CR>
"Misc stuff "Misc stuff
let s:uname='' let s:uname=''
let s:uname = system('uname | tr -d "\n"') " Get platform name (stripping the trailing newline) let s:uname = system('uname | tr -d "\n"') " Get platform name (stripping the trailing newline)