Deeper into spacemacs

This commit is contained in:
Hunter Haugen 2016-10-19 13:10:51 -07:00
parent e716ac0aa3
commit eab0d67c22
Signed by: hunner
GPG key ID: EF99694AA599DDAD
2 changed files with 11 additions and 5 deletions

View file

@ -100,6 +100,7 @@ kwmc config spawn left
kwmc rule owner="iTerm2" properties={role="AXDialog"} kwmc rule owner="iTerm2" properties={role="AXDialog"}
// Emacs is special? // Emacs is special?
kwmc config add-role AXWindow Emacs
kwmc rule owner="Emacs" properties={role="AXStandardWindow"} kwmc rule owner="Emacs" properties={role="AXStandardWindow"}
/* The following commands create rules that /* The following commands create rules that

15
.vimrc
View file

@ -685,9 +685,14 @@ noremap þ j
noremap ß k noremap ß k
noremap ® l noremap ® l
" Make <space>/<backspace> page up/down {{{2 " Make <space>/<backspVjace> page up/down {{{2
noremap <space> <C-f> "noremap <space> <C-f>
noremap <backspace> <C-b> "noremap <backspace> <C-b>
" Some spacemacs -> vim things {{{2
noremap <Space>fs :w<CR>
noremap <Space>qq :q<CR>
inoremap <C-g> <Esc>
" Scrolling with arrows controls the window {{{2 " Scrolling with arrows controls the window {{{2
noremap <Up> <C-y> noremap <Up> <C-y>
@ -936,8 +941,8 @@ if v:version >= 700 && has("eval")
endif endif
endfun endfun
inoremap <C-g>y <C-\><C-o>:call SuperYank(-1)<CR> "inoremap <C-g>y <C-\><C-o>:call SuperYank(-1)<CR>
inoremap <C-g>e <C-\><C-o>:call SuperYank(1)<CR> "inoremap <C-g>e <C-\><C-o>:call SuperYank(1)<CR>
endif endif
" tab completion {{{2 " tab completion {{{2