only load general bindings once

This commit is contained in:
Wryn Wagner 2020-09-21 22:54:55 -06:00
parent fec19a1dc3
commit 66aca50c97

View File

@ -24,6 +24,8 @@ source $VIM_DIR/abbreviations.vim
source $VIM_DIR/window_pane_navigation.vim
source $VIM_DIR/my_colors.vim
augroup general_bindings
" {{{
" <SPACE> to execute macro on q
nnoremap <Space> @q
@ -67,3 +69,6 @@ nnoremap _ :m -2 <CR>
" - (insert mode) set current word to upper-case
inoremap <c-u> <esc>viwUea
" }}}
augroup end