您好,登錄后才能下訂單哦!
這篇文章主要介紹“Ubuntu系統(tǒng)中g(shù)Vim的基本安裝與配置步驟”,在日常操作中,相信很多人在Ubuntu系統(tǒng)中g(shù)Vim的基本安裝與配置步驟問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”Ubuntu系統(tǒng)中g(shù)Vim的基本安裝與配置步驟”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
安裝:
1. 在www.vim.org上 下載 源碼包 vim-7.4.tar.bz2
2. 開(kāi)發(fā)庫(kù)libncurses5-dev安裝 :
代碼如下:
sudo apt-get install libncurses5-dev
3. 解壓 tar jxvf vim-7.4.tar.bz2,進(jìn)入vim74/src:
代碼如下:
./configure --with-features=huge --enable-pythoninterp=yes --enable-gui=gnome2 --enable-cscope --enable-fontset --enable-perlinterp --enable-rubyinterp --with-python-config-dir=/usr/lib/python2.6/config
4.
代碼如下:
make && sudo make install
5. 這樣vim就安裝完成,下面安裝gvim:
代碼如下:
sudo apt-get install vim-gnome
gvim配置文件.vimrc中的一些基本配置講解:
" 不要使用vi的鍵盤(pán)模式,而是vim自己的
set nocompatible
" 語(yǔ)法高亮
set syntax=on
"配色方案
colorscheme torte
" 去掉輸入錯(cuò)誤的提示聲音
set noeb
" 在處理未保存或只讀文件的時(shí)候,彈出確認(rèn)
set confirm
" 自動(dòng)縮進(jìn)
set autoindent
set cindent
" 自動(dòng)換行
set wrap
" 整詞換行
set linebreak
" Tab鍵的寬度
set tabstop=4
" 統(tǒng)一縮進(jìn)為4
set softtabstop=4
set shiftwidth=4
" 不要用空格代替制表符
set noexpandtab
" 在行和段開(kāi)始處使用制表符
set smarttab
" 顯示行號(hào)
set number
" 歷史記錄數(shù)
set history=1000
"禁止生成臨時(shí)文件
set nobackup
set noswapfile
"搜索忽略大小寫(xiě)
set ignorecase
"搜索逐字符高亮
set hlsearch
set incsearch
"行內(nèi)替換
set gdefault
"編碼設(shè)置
set enc=utf-8
set fencs=utf-8,ucs-bom,shift-jis,gb18030,gbk,gb2312,cp936
"語(yǔ)言設(shè)置
set helplang=cn
set encoding=utf8
set langmenu=zh_CN.UTF-8
set imcmdline
source $VIMRUNTIME/delmenu.vim
source $VIMRUNTIME/menu.vim
" 設(shè)置字體。
set guifont=Liberation\Mono\ 12
"set guifont=Fixedsys\Excelsior\3.01\ 14
" 我的狀態(tài)行顯示的內(nèi)容(包括文件類(lèi)型和解碼)
set statusline=%F%m%r%h%w\ [FORMAT=%{&ff}]\ [TYPE=%Y]\ [POS=%l,%v][%p%%]\ %{strftime(\"%d/%m/%y\ -\ %H:%M\")}
"set statusline=[%F]%y%r%m%*%=[Line:%l/%L,Column:%c][%p%%]
" 總是顯示狀態(tài)行
set laststatus=2
" 在編輯過(guò)程中,在右下角顯示光標(biāo)位置的狀態(tài)行
set ruler
" 命令行(在狀態(tài)行下)的高度,默認(rèn)為1,這里是2
set cmdheight=2
" 偵測(cè)文件類(lèi)型
filetype on
" 載入文件類(lèi)型插件
filetype plugin on
" 為特定文件類(lèi)型載入相關(guān)縮進(jìn)文件
filetype indent on
" 保存全局變量
set viminfo+=!
" 帶有如下符號(hào)的單詞不要被換行分割
set iskeyword+=_,$,@,%,#,-
" 字符間插入的像素行數(shù)目
set linespace=0
" 增強(qiáng)模式中的命令行自動(dòng)完成操作
set wildmenu
" 使回格鍵(backspace)正常處理indent, eol, start等
set backspace=2
" 允許backspace和光標(biāo)鍵跨越行邊界
set whichwrap+=<,>,h,l
" 可以在buffer的任何地方使用鼠標(biāo)(類(lèi)似office中在工作區(qū)雙擊鼠標(biāo)定位)
set mouse=a
set selection=exclusive
set selectmode=mouse,key
" 通過(guò)使用: commands命令,告訴我們文件的哪一行被改變過(guò)
set report=0
" 啟動(dòng)的時(shí)候不顯示那個(gè)援助索馬里兒童的提示
set shortmess=atI
" 在被分割的窗口間顯示空白,便于閱讀
set fillchars=vert:\ ,stl:\ ,stlnc:\
" 高亮顯示匹配的括號(hào)
set showmatch
" 匹配括號(hào)高亮的時(shí)間(單位是十分之一秒)
set matchtime=5
" 光標(biāo)移動(dòng)到buffer的頂部和底部時(shí)保持3行距離
set scrolloff=3
" 為C程序提供自動(dòng)縮進(jìn)
set smartindent
" 只在下列文件類(lèi)型被偵測(cè)到的時(shí)候顯示行號(hào),普通文本文件不顯示
if has("autocmd")
autocmd FileType xml,html,c,cs,java,perl,shell,bash,cpp,python,vim,php,ruby set number
autocmd FileType xml,html vmap <C-o> <ESC>'<i<!--<ESC>o<ESC>'>o-->
autocmd FileType java,c,cpp,cs vmap <C-o> <ESC>'<o/*<ESC>'>o*/
autocmd FileType html,text,php,vim,c,java,xml,bash,shell,perl,python setlocal textwidth=100
autocmd Filetype html,xml,xsl source $VIMRUNTIME/plugin/closetag.vim
autocmd BufReadPost *
\ if line("'\"") > 0 && line("'\"") <= line("$") |
\ exe "normal g`\"" |
\ endif
endif " has("autocmd")
" F5編譯和運(yùn)行C程序,F(xiàn)6編譯和運(yùn)行C++程序
" C的編譯和運(yùn)行
map <F5> :call CompileRunGcc()<CR>
func! CompileRunGcc()
exec "w"
exec "!gcc -Wall % -o %<"
exec "! ./%<"
endfunc
" C++的編譯和運(yùn)行
map <F6> :call CompileRunGpp()<CR>
func! CompileRunGpp()
exec "w"
exec "!g++ -Wall % -o %<"
exec "! ./%<"
endfunc
" 能夠漂亮地顯示.NFO文件
set encoding=utf-8
function! SetFileEncodings(encodings)
let b:myfileencodingsbak=&fileencodings
let &fileencodings=a:encodings
endfunction
function! RestoreFileEncodings()
let &fileencodings=b:myfileencodingsbak
unlet b:myfileencodingsbak
endfunction
au BufReadPre *.nfo call SetFileEncodings('cp437')|set ambiwidth=single
au BufReadPost *.nfo call RestoreFileEncodings()
" 高亮顯示普通txt文件(需要txt.vim腳本)
au BufRead,BufNewFile * setfiletype txt
" 用空格鍵來(lái)開(kāi)關(guān)折疊
set foldenable
set foldmethod=manual
nnoremap <space> @=((foldclosed(line('.')) < 0) ? 'zc' : 'zo')<CR>
" minibufexpl插件的一般設(shè)置
let g:miniBufExplMapWindowNavVim = 1
let g:miniBufExplMapWindowNavArrows = 1
let g:miniBufExplMapCTabSwitchBufs = 1
let g:miniBufExplModSelTarget = 1
"-----------
" 模仿MS Windows中的快捷鍵
"-----------
vmap <C-c> "yy
vmap <C-x> "yd
nmap <C-v> "yp
vmap <C-v> "yp
nmap <C-a> ggvG$
到此,關(guān)于“Ubuntu系統(tǒng)中g(shù)Vim的基本安裝與配置步驟”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。