摘要: VIM的高级使用转:http://www.cnblogs.com/itech/archive/2012/02/22/2363111.html1)一些常用的Vim配置,在~/.vimrc中syntax on 支持语法高亮set nu 显示行号set nonu 不显示行号set ai 设置自动缩进set shiftwidth=4 设置自动缩进 4 个空格, 当然要设自动缩进先.set sts=4 即设置 softtabstop 为 4. 输入 tab 后就跳了 4 格.set tabstop=4 实际的 tab 即为 4 个空格, 而不是缺省的 8 个.se... 阅读全文
posted @ 2014-01-07 17:10 Django's blog 阅读(314) 评论(0) 推荐(0) 编辑