Created
August 25, 2014 08:57
-
-
Save khebbie/d491b84bff073ba6d4e4 to your computer and use it in GitHub Desktop.
.vimrc.local
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let mapleader=" " | |
nnoremap <Leader>q :q<CR> | |
nnoremap <Leader>w :w<CR> | |
nnoremap <Leader>e :e | |
nnoremap <Leader>v :vsplit | |
nnoremap <Leader>s :split | |
nnoremap <Leader>p :CtrlP<CR> | |
nnoremap <Leader>g :vimgrep | |
nnoremap <Leader>c :copen<CR> | |
nnoremap <Leader>C :cclose<CR> | |
nnoremap <Leader>8 :set tw=80<CR> | |
nnoremap <Leader>0 :set tw=0<CR> | |
nnoremap <Leader>n :set invnumber<CR> | |
nnoremap <Leader><TAB> <C-w><C-w> | |
nnoremap <Leader>h <C-w>h | |
nnoremap <Leader>j <C-w>j | |
nnoremap <Leader>k <C-w>k | |
nnoremap <Leader>l <C-w>l | |
nnoremap <Leader>H <C-w>H | |
nnoremap <Leader>J <C-w>J | |
nnoremap <Leader>K <C-w>K | |
nnoremap <Leader>L <C-w>L | |
nnoremap <Leader>, 2<C-w>< | |
nnoremap <Leader>. 2<C-w>> | |
nnoremap <Leader>- 2<C-w>- | |
nnoremap <Leader>= 2<C-w>+ | |
nnoremap <esc> :noh<return><esc> | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
set linespace=4 | |
nnoremap <leader><leader> <c-^> | |
nnoremap <Left> :echoe "Use h"<CR> | |
nnoremap <Right> :echoe "Use l"<CR> | |
nnoremap <Up> :echoe "Use k"<CR> | |
nnoremap <Down> :echoe "Use j"<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment