mirror of
https://github.com/webgefrickel/dotfiles
synced 2024-11-03 15:40:30 +00:00
62 lines
1.5 KiB
VimL
62 lines
1.5 KiB
VimL
" Custom key mappings and shortcuts
|
|
"======================================================================
|
|
|
|
" remap semi-colon to be colon in normal an visual mode
|
|
nnoremap ; :
|
|
vnoremap ; :
|
|
|
|
" Swap v and CTRL-V, because Block mode is more useful
|
|
nnoremap v <C-V>
|
|
nnoremap <C-V> v
|
|
vnoremap v <C-V>
|
|
vnoremap <C-V> v
|
|
|
|
" jk nice behaviour (screen lines vs. shown lines)
|
|
nnoremap j gj
|
|
nnoremap k gk
|
|
|
|
" behave - yank just like D and C
|
|
nnoremap Y y$
|
|
|
|
" auto-yanking with clipper for selected yanking, see leader-y mapping
|
|
vnoremap y y :call system('nc localhost 8377', @0)<cr>
|
|
|
|
" Search mappings: These will make it so that going to the next one in a
|
|
" search will center on the line it's found in.
|
|
nnoremap N Nzz
|
|
nnoremap n nzz
|
|
|
|
" use the arrowkeys for usefull stuff in normal mode -- switching buffers
|
|
nnoremap <up> :bfirst<cr>
|
|
nnoremap <down> :blast<cr>
|
|
nnoremap <left> :bp<cr>
|
|
nnoremap <right> :bn<cr>
|
|
|
|
" Bubble/indent lines using unimpaired
|
|
" using left alt + hjkl on mac usgerman keyboard
|
|
nmap ˚ [e
|
|
nmap ∆ ]e
|
|
nmap ˙ <<
|
|
nmap ¬ >>
|
|
vmap ˚ [egv
|
|
vmap ∆ ]egv
|
|
vmap ˙ <gv
|
|
vmap ¬ >gv
|
|
|
|
" Fast Switch between windows/buffers with tab
|
|
nnoremap <tab> <C-w><C-w>
|
|
nnoremap <S-tab> <C-w>W
|
|
|
|
" no help while mishitting ESC - awesome
|
|
noremap <F1> <ESC>
|
|
|
|
" deactivate stupid ex-mode and man-page stuff
|
|
nnoremap Q <nop>
|
|
nnoremap K <nop>
|
|
|
|
" reload files when set autoread is active with F5
|
|
nnoremap <F5> :checktime<CR>
|
|
|
|
" For when you forget to sudo.. Really Write the file.
|
|
cmap w!! w !sudo tee % >/dev/null
|