vim和vi编辑器的个性化设置
首先,安装vim
sudo apt -get install vim
第二步,做一个软链接
sudo In -sf /usr/bin/vim /usr/bin/vi
这一步是将vi与vim链接起来呢,毕竟做一个软链接将vi命令变更成vim,对于以后操作是很方便的。
第三步,创建vim配置文件
sudo vi /etc/vim/vimrc.local
这一步可省,有的自带vim配置文件在~/ 下有vimrc.local文件
第四步,添加配置
在vimrc.local文件中添加配置
"bash option
"---------------
set nu
set nocompatible
syntax on
set showcmd
set mouse=a
set t_Co=256
filetype indent on
set cursorline
set showmatch
set incsearch
set autochdir
set autoread
set hlsearch
set autoindent
set tabstop=4
set noexpandtab
set shiftwidth=4
set softtabstop
"bash option end
其中set noexpandtab最为重要,为避免未来在makefile的使用中报错。