1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129
| noremap Q :q<CR> noremap <C-q> :qa<CR> noremap S :w<CR>
noremap l u
noremap k i noremap K I
nnoremap Y y$
vnoremap Y
nnoremap < << nnoremap > >>
noremap <LEADER><CR> :nohlsearch<CR>
noremap <silent> u k noremap <silent> n h noremap <silent> e j noremap <silent> i l noremap <silent> gu gk noremap <silent> ge gj
noremap <silent> U 5k noremap <silent> E 5j
noremap <silent> N 0
noremap <silent> I $
noremap W 5w noremap B 5b
noremap <C-U> 5<C-y> noremap <C-E> 5<C-e>
inoremap <C-a> <ESC>A
cnoremap <C-a> <Home> cnoremap <C-e> <End> cnoremap <C-p> <Up> cnoremap <C-n> <Down> cnoremap <C-b> <Left> cnoremap <C-f> <Right> cnoremap <M-b> <S-Left> cnoremap <M-w> <S-Right>
noremap - N noremap = n
noremap su :set nosplitbelow<CR>:split<CR>:set splitbelow<CR> noremap se :set splitbelow<CR>:split<CR> noremap sn :set nosplitright<CR>:vsplit<CR>:set splitright<CR> noremap si :set splitright<CR>:vsplit<CR>
noremap <up> :res +5<CR> noremap <down> :res -5<CR> noremap <left> :vertical resize-5<CR> noremap <right> :vertical resize+5<CR>
noremap sh <C-w>t<C-w>K
noremap sv <C-w>t<C-w>H
noremap srh <C-w>b<C-w>K noremap srv <C-w>b<C-w>H
noremap <LEADER>q <C-w>j:q<CR>
noremap tu :tabe<CR>
noremap tn :-tabnext<CR> noremap ti :+tabnext<CR>
noremap tmn :-tabmove<CR> noremap tmi :+tabmove<CR>
noremap <LEADER><LEADER> <Esc>/<++><CR>:nohlsearch<CR>c4l
noremap <LEADER>sc :set spell!<CR>
noremap ` ~
noremap <LEADER>dw /\(\<\w\+\>\)\_s*\1
|