Skip to content

Instantly share code, notes, and snippets.

@liquidz
Created August 9, 2013 09:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save liquidz/6192254 to your computer and use it in GitHub Desktop.
Save liquidz/6192254 to your computer and use it in GitHub Desktop.
" 検索語を強調表示
set hlsearch
" j/k での移動量を3行に
map j 5<C-e>
map k 5<C-y>
" H/L でタブ移動
map H gT
map L gt
" visualmode
vmap j <Down>
vmap k <Up>
vmap h <Left>
vmap l <Right>
" R で vimperatorrcを再読み込み
map R :source ~/.vimperatorrc<CR>
" <C-h> で戻る
map <C-h> :back<CR>
map Q :quit<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment