-
编辑 vimrc 文件,
vi ~/.vimrc
-
设置 F2 为打开/关闭行号
set nonumber
set nocursorline
nnoremap <F2> :set number!<CR>:set cursorline!<CR>
inoremap <F2> <C-O>:set number!<CR>:set cursorline!<CR>
- 设置 F3 为拼写检查
set spelllang=en,cjk
nnoremap <silent> <F3> :set spell!<cr>
inoremap <silent> <F3> <C-O>:set spell!<cr>
- 设置 F4 在编辑模式打开或关闭paste模式
set pastetoggle=<F4>
map <silent><F4> :set nowrap!<cr>
标签:spell,set,配置,玩法,number,nnoremap,vim,cursorline
From: https://www.cnblogs.com/dewan/p/17014361.html