vim一般設定

來源:互聯網
上載者:User
如果不知道設定檔及指令碼的位置,可以在vim中使用命令 :scriptnames ,將顯示如下路徑/etc/vimrc/usr/share/vim/vim72/syntax/syntax.vim/usr/share/vim/vim72/syntax/synload.vim/usr/share/vim/vim72/syntax/syncolor.vim/usr/share/vim/vim72/filetype.vim/usr/share/vim/vim72/ftplugin.vim/home/kdj/.vimrc

 

~$ cat .vimrc 

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 一般設定
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 設定預設解碼
set fenc=utf-8
set fencs=utf-8,usc-bom,euc-jp,gb18030,gbk,gb2312,cp936

" 不要使用vi的鍵盤模式,而是vim自己的
set nocompatible

" history檔案中需要記錄的行數
set history=100

" 在處理未儲存或唯讀檔案的時候,彈出確認
set confirm 

" 偵測檔案類型
filetype on

" 載入檔案類型外掛程式
filetype plugin on

" 為特定檔案類型載入相關縮排檔案
filetype indent on

" 儲存全域變數
set viminfo+=!

" 文法高亮
syntax on

" 狀態行顏色
highlight StatusLine guifg=SlateBlue guibg=Yellow
highlight StatusLineNC guifg=Gray guibg=White 

" 在狀態行上顯示光線標所在位置的行號和列號
set ruler
set rulerformat=%20(%2*%<%f%=\ %m%r\ %3l\ %c\ %p%%%) 

" 命令列(在狀態行下)的高度,預設為1,這裡是2
set cmdheight=2

" 使回格鍵(backspace)正常處理indent, eol, start等
set backspace=2 

" 在被分割的視窗間顯示空白,便於閱讀
set fillchars=vert:\ ,stl:\ ,stlnc:\

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 檔案設定
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 不要備份檔案(根據自己需要取捨)
set nobackup

" 不要產生swap檔案,當buffer被丟棄的時候隱藏它
setlocal noswapfile
set bufhidden=hide 

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 搜尋和匹配
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 高亮顯示匹配的括弧
set showmatch

" 匹配括弧高亮的時間(單位是十分之一秒)
set matchtime=5

" 在搜尋的時候忽略大小寫
set ignorecase

" 不要高亮被搜尋的句子(phrases)
set nohlsearch

" 在搜尋時,輸入的詞句的逐字元高亮(類似firefox的搜尋)
set incsearch

" 輸入:set list命令是應該顯示些啥?
set listchars=tab:\|\ ,trail:.,extends:>,precedes:<,eol:$ 

" 游標移動到buffer的頂部和底部時保持3行距離
set scrolloff=3 

"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Autocommands
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" 只在下列檔案類型被偵測到的時候顯示行號,普通文字檔不顯示

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編譯和運行C程式,F6編譯和運行C++程式
" 請注意,下述代碼在windows下使用會報錯
" 需要去掉./這兩個字元

" C的編譯和運行
map <F5> :call CompileRunGcc()<CR>
func! CompileRunGcc()
exec "w"
exec "!gcc % -o %<"
exec "! ./%<"
endfunc

" C++的編譯和運行
map <F6> :call CompileRunGpp()<CR>
func! CompileRunGpp()
exec "w"
exec "!g++ % -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()

 

我自己用的設定在這裡

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.