首页 > 代码库 > Vim配置

Vim配置

非兼容模式: set nocp 

显示行号: set nu 

搜索不区分大小写: set ignorecase 

自动折行显示: set linebreak 

语法高量: syntax on 

自动缩进: set autoindent 

设置python缩进格式:

autocmd FileType python setlocal tabstop=4 shiftwidth=4 softtabstop=4 textwidth=79

 

Vim配置