From 6b9791392625474ccebb1910a22b76f2301c33e8 Mon Sep 17 00:00:00 2001 From: bretello Date: Thu, 7 Jan 2021 16:14:41 +0100 Subject: [PATCH] vim: add I to toggle indent guides --- vim/shortcuts.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/vim/shortcuts.vim b/vim/shortcuts.vim index ef1cd5d..d8eaec3 100644 --- a/vim/shortcuts.vim +++ b/vim/shortcuts.vim @@ -83,6 +83,10 @@ map b :CtrlPBuffer map f :CtrlPMRUFiles map t :CtrlPTag + +"" Indent Guides +map I :IndentGuidesToggle + "Misc stuff let s:uname='' let s:uname = system('uname | tr -d "\n"') " Get platform name (stripping the trailing newline)