1.先卸载tiny版本vi 输入命令:sudo apt-get remove vim-common 2.然后再输入命令: sudo apt-get install vim sudo vim /etc/vim/vimrc set nu // 在左侧行号 set tabstop=4 //tab 长度设置为 4,等号两边不能有空格 set nobackup //覆盖文件时不备份 set…
1.配置文件的位置在目录 /etc/ 下面,有个名为vimrc的文件,这是系统中公共的vim配置文件,对所有用户都有效.而在每个用户的主目录下,都可以自己建立私有的配置文件,命名为:“.vimrc”.例如,/root目录下,通常已经存在一个.vimrc文件.如果文件操作权限不够,则: cd /etc/vim chmod 777vimrc vi vimrc即可操作 """"""""""""…
Vundle is short for Vim bundle and is a Vim plugin manager. 从git上下载vundle $ git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim 配置vundle插件 Put this at the top of your .vimrc to use Vundle. Remove plugins you don't need, the…