ubuntu使用记录-vim配置

1.安装vim
sudo apt-get install vim-full

2.自动缩进
set autoindent

3.C/C++语法模式
set cindent

4.设置制表符长度
set tabstop=4
set softtabstop=4


5.设置显示行号
set nu

6.设置沙漠风格
colorscheme desert
VIM配色风格大全 : http://vimcolorschemetest.googlecode.com/svn/html/index-c.html

7.设置查找高亮/搜索高亮
set hlsearch

8.设置即时搜索/即时查找(在输入字符的过程中就查找)
set incsearch

9.设置缩进空格数量

set shiftwidth=4

你可能感兴趣的:(ubuntu使用记录-vim配置)