1. 程式人生 > >Ubuntu裡VIM的基本配置執行

Ubuntu裡VIM的基本配置執行

sudo gedit /etc/vim/vimrc 開啟配置檔案,在最後面輸入如下文字,儲存:
set nu    //顯示行號
set tabstop=4    //設定TAB為4格
set autoindent    //設定自動縮排
set cursorline     //凸出顯示該行
set cursorcolumn    //凸出顯示該列
color blue        //設定顏色主題為BLUE

set autoread     //設定自動讀取檔案

map <F9>    <Esc>:w<CR>:!g++ % -o %< && ./%<<CR>   

imap <F9>    <Esc>:w<CR>:!g++ % -o %< && ./%<<CR>


//ps

set nu
set mouse=a
set tabstop=4
set autoindent
set cursorline
color evening
set autoread
set ruler
set nobackup
map <F9> <Esc>:w<CR> :!g++ % -o %< && ./%< <CR>
imap <F9> <Esc>:w<CR> :!g++ % -o %< && ./%< <CR>