Files
dotwryn/vim/rc.d/70.bindings.vim
T

9 lines
227 B
VimL
Raw Normal View History

2024-05-07 16:38:40 -06:00
" backslash for Leader and backspace for LocalLeader
nmap <BS> <Nop>
let mapleader = "\\"
let maplocalleader = "\<BS>"
" (e)dit / (s)ource (v)imrc
nnoremap <Leader>ev :tabedit $VIMRC<CR>
nnoremap <Leader>sv :source $VIMRC<CR>