1. 程式人生 > >在NOILINUX下的簡易VIM配置

在NOILINUX下的簡易VIM配置

logs local cse conf 即使 auto etc mod des

位置:/etc/vim/vimrc

建議使用gedit來進行配置。即使用命令:sudo gedit /etc/vim/vimrc

set mouse=a        " Enable mouse usage (all modes)
set confirm

set tabstop=4
set shiftwidth=4

set smarttab
set smartindent

color desert
set nu
set ruler
set hlsearch
set incsearch
set cursorline

set nobackup
set autoread

map <F9> <ESC>:w
<CR> :!g++ % -o %< -Wall -DLOCAL && ./%< <CR> imap <F9> <ESC>:w<CR> :!g++ % -o %< -Wall -DLOCAL && ./%< <CR>

在NOILINUX下的簡易VIM配置