Vim常用配置

在_vimrc中添加:


"F5:显示NERDTree

nnoremap <silent> <F5> :NERDTree<CR>


"去掉工具栏
set go=
"夜间模式
color evening
" 全屏
if has('gui_running') && has("win32")
    au GUIEnter * simalt ~x
endif


"编码UTF8
set encoding=utf-8
set langmenu=zh_CN.UTF-8
language message zh_CN.UTF-8


"高亮光标所在行
:set cursorline

你可能感兴趣的:(Vim常用配置)