从终端打开配置文件: vim ~/.vimrc 添加如下代码: set tabstop=4 set softtabstop=4 set shiftwidth=4 set autoindent set cindent set cinoptions={0,1s,t0,n-2,p2s,(03s,=.5s,>1s,=1s,:1s set nu set ruler set hlsearch set backspace=2 含义如下: 1.设置(软)制表符宽度为4 set tabstop=4 set sof…
大神推荐使用vim编写Python脚本,学而时积之,不亦乐乎! 使用vim编写Python脚本的时候不能正常缩进,需要修改vimrc文件 Ubuntu系统下vimrc文件的位置: $ cd /etc/vim/ $ sudo vim vimrc 添加如下到vimrc文件 set filetype=pythonau BufNewFile,BufRead *.py,*.pyw setf python set autoindent " same level indent set smartindent…