打开终端:ctrl+alt+t 进入vim文件:cd /etc/vim 打开vimrc文件:sudo gedit vimrc 然后在行末if语句前加上下面的内容," 这个符号为注释,后面内容无需加入 set nummber "显示行号 filetype on "检测文件类型 set background=dark "设置背景颜色 syntax on "语法高亮显示 set autoindent "自动对齐 set smartind
使用vundle安装时,在.vimrc中添加 Plugin 'Valloric/YouCompleteMe' 使用Bundle会安装失败原因未知 YCM编译时附加选项--system-libclang使用系统的clang包 我的vim配置 set tabstop= set softtabstop= set shiftwidth= set noexpandtab set nu set autoindent set cindent set nocompatible filetype off set
set sw=4 set ts=4 set et set smarttab set smartindent set lbr set fo+=mB set sm set selection=inclusive set wildmenu set mousemodel=popup au FileType php setlocal dict+=~/.vim/dict/php_funclist.dict au FileType css setloca
1.打开vimrc文件 sudo vi /usr/share/vim/vimrc 2.添加 set filetype=python au BufNewFile,BufRead *.py,*.pyw setf python set autoindent " same level indent set smartindent " next level indent set expandtab set tabstop=4 set shiftwidth=4 set softtabstop=4