@username
を付けます 551 | autocmd CmdwinEnter * if getcmdwintype() == '@' | setlocal spell | startinsert! | endif
182 | let c='a'
183 | while c <= 'z'
184 | exec "set <A-".c.">=\e".c
185 | exec "imap \e".c." <A-".c.">"
186 | let c = nr2char(1+char2nr(c))
187 | endwhile
220 | " j and k behave intuitively
221 | noremap j gj
222 | noremap k gk
223 | " If you need the default behavior for some reason use this:
224 |
225 | noremap gj j
226 | noremap gk k
227 | " Thanks DJMcMayhem, that was a good idea.
252 | " Make copy pasta act like windows.
253 | " Because we all know how broken the middle click method is.....
254 | " Also sets the paste option temporarily so that vim doesn't try
255 | " to auto-indent as it pastes (Almost never what you want).
256 | noremap <C-v> :set paste<CR>"+gP:set nopaste<CR>
257 | inoremap <C-v> <C-o>:set paste<CR><C-r>+<C-o>:set nopaste<CR>
258 | cnoremap <C-v> <C-r>+
259 | vnoremap <C-v> d"+gP
260 | vnoremap <C-c> "+y