vim的配置檔案詳解

wgz7747147820發表於2020-12-02

https://blog.csdn.net/qq_41113081/article/details/100152358

set nocompatible " 關閉 vi 相容模式
syntax on " 自動語法高亮
set number " 顯示行號
set cursorline " 突出顯示當前行
set ruler " 開啟狀態列標尺
set shiftwidth=4 " 設定 << 和 >> 命令移動時的寬度為 4
set softtabstop=4 " 使得按退格鍵時可以一次刪掉 4 個空格
set tabstop=4 " 設定 tab 長度為 4
set nobackup " 覆蓋檔案時不備份
set autochdir " 自動切換當前目錄為當前檔案所在的目錄
filetype plugin indent on " 開啟外掛
set backupcopy=yes " 設定備份時的行為為覆蓋
set ignorecase smartcase " 搜尋時忽略大小寫,但在有一個或以上大寫字母時仍保持對大小寫敏感
set nowrapscan " 禁止在搜尋到檔案兩端時重新搜尋
set incsearch " 輸入搜尋內容時就顯示搜尋結果
set hlsearch " 搜尋時高亮顯示被找到的文字
set noerrorbells " 關閉錯誤資訊響鈴
set novisualbell " 關閉使用可視響鈴代替呼叫
set t_vb= " 置空錯誤鈴聲的終端程式碼
"set showmatch " 插入括號時,短暫地跳轉到匹配的對應括號
"set matchtime=2 " 短暫跳轉到匹配括號的時間
set magic " 設定魔術
set hidden " 允許在有未儲存的修改時切換緩衝區,此時的修改由 vim 負責儲存
set guioptions-=T " 隱藏工具欄
set guioptions-=m " 隱藏選單欄
set smartindent " 開啟新行時使用智慧自動縮排
set backspace=indent,eol,start
" 不設定在插入狀態無法用退格鍵和 Delete 鍵刪除回車符
set cmdheight=1 " 設定命令列的行數為 1
set laststatus=2 " 顯示狀態列 (預設值為 1, 無法顯示狀態列)
set statusline=\ %<%F[%1*%M%*%n%R%H]%=\ %y\ %0(%{&fileformat}\ %{&encoding}\ %c:%l/%L%)\
" 設定在狀態行顯示的資訊
set foldenable " 開始摺疊
set foldmethod=syntax " 設定語法摺疊
set foldcolumn=0 " 設定摺疊區域的寬度
setlocal foldlevel=1 " 設定摺疊層數為
" set foldclose=all " 設定為自動關閉摺疊
" nnoremap @=((foldclosed(line(’.’)) < 0) ? ‘zc’ : ‘zo’)
" 用空格鍵來開關摺疊

" return OS type, eg: windows, or linux, mac, et.st…
function! MySys()
if has(“win16”) || has(“win32”) || has(“win64”) || has(“win95”)
return “windows”
elseif has(“unix”)
return “linux”
endif
endfunction

" 使用者目錄變數$VIMFILES
if MySys() == “windows”
let $VIMFILES = $VIM.’/vimfiles’
elseif MySys() == “linux”
let $VIMFILES = $HOME.’/.vim’
endif

" 設定doc文件目錄
let helptags=$VIMFILES.’/doc’

" 設定字型 以及中文支援
if has(“win32”)
set guifont=Inconsolata:h12:cANSI
endif

" 配置多語言環境
if has(“multi_byte”)
" UTF-8 編碼
set encoding=utf-8
set termencoding=utf-8
set formatoptions+=mM
set fencs=utf-8,gbk

if v:lang =~? ‘^(zh)|(ja)|(ko)’
set ambiwidth=double
endif

if has(“win32”)
source $VIMRUNTIME/delmenu.vim
source $VIMRUNTIME/menu.vim
language messages zh_CN.utf-8
endif
else
echoerr “Sorry, this version of (g)vim was not compiled with +multi_byte”
endif

" Buffers操作快捷方式!
nnoremap :bnext
nnoremap :bprevious

" Tab操作快捷方式!
nnoremap :tabnext
nnoremap :tabprev

"關於tab的快捷鍵
" map tn :tabnext
" map tp :tabprevious
" map td :tabnew .
" map te :tabedit
" map tc :tabclose

"視窗分割時,進行切換的按鍵熱鍵需要連線兩次,比如從下方視窗移動
"游標到上方視窗,需要k,非常麻煩,現在重對映為,切換的
"時候會變得非常方便.
nnoremap h
nnoremap j
nnoremap k
nnoremap l

"一些不錯的對映轉換語法(如果在一個檔案中混合了不同語言時有用)
nnoremap 1 :set filetype=xhtml
nnoremap 2 :set filetype=css
nnoremap 3 :set filetype=javascript
nnoremap 4 :set filetype=php

" set fileformats=unix,dos,mac
" nmap fd :se fileformat=dos
" nmap fu :se fileformat=unix

" use Ctrl+[l|n|p|cc] to list|next|previous|jump to count the result
" map l :cl
" map n :cn
" map p :cp
" map c :cc

" 讓 Tohtml 產生有 CSS 語法的 html
" syntax/2html.vim,可以用:runtime! syntax/2html.vim
let html_use_css=1

" Python 檔案的一般設定,比如不要 tab 等
autocmd FileType python set tabstop=4 shiftwidth=4 expandtab
autocmd FileType python map :!python %

" 選中狀態下 Ctrl+c 複製
vmap "+y

" 開啟javascript摺疊
let b:javascript_fold=1
" 開啟javascript對dom、html和css的支援
let javascript_enable_domhtmlcss=1
" 設定字典 ~/.vim/dict/檔案的路徑
autocmd filetype javascript set dictionary= V I M F I L E S / d i c t / j a v a s c r i p t . d i c t a u t o c m d f i l e t y p e c s s s e t d i c t i o n a r y = VIMFILES/dict/javascript.dict autocmd filetype css set dictionary= VIMFILES/dict/javascript.dictautocmdfiletypecsssetdictionary=VIMFILES/dict/css.dict
autocmd filetype php set dictionary=$VIMFILES/dict/php.dict

"-----------------------------------------------------------------
" plugin - bufexplorer.vim Buffers切換
" \be 全屏方式檢視全部開啟的檔案列表
" \bv 左右方式檢視 \bs 上下方式檢視
"-----------------------------------------------------------------

“-----------------------------------------------------------------
" plugin - taglist.vim 檢視函式列表,需要ctags程式
" F4 開啟隱藏taglist視窗
“-----------------------------------------------------------------
if MySys() == “windows” " 設定windows系統中ctags程式的位置
let Tlist_Ctags_Cmd = '”’.$VIMRUNTIME.’/ctags.exe”’
elseif MySys() == “linux” " 設定windows系統中ctags程式的位置
let Tlist_Ctags_Cmd = ‘/usr/bin/ctags’
endif
nnoremap :TlistToggle
let Tlist_Show_One_File = 1 " 不同時顯示多個檔案的tag,只顯示當前檔案的
let Tlist_Exit_OnlyWindow = 1 " 如果taglist視窗是最後一個視窗,則退出vim
let Tlist_Use_Right_Window = 1 " 在右側視窗中顯示taglist視窗
let Tlist_File_Fold_Auto_Close=1 " 自動摺疊當前非編輯檔案的方法列表
let Tlist_Auto_Open = 0
let Tlist_Auto_Update = 1
let Tlist_Hightlight_Tag_On_BufEnter = 1
let Tlist_Enable_Fold_Column = 0
let Tlist_Process_File_Always = 1
let Tlist_Display_Prototype = 0
let Tlist_Compact_Format = 1

"-----------------------------------------------------------------
" plugin - mark.vim 給各種tags標記不同的顏色,便於觀看調式的外掛。
" \m mark or unmark the word under (or before) the cursor
" \r manually input a regular expression. 用於搜尋.
" \n clear this mark (i.e. the mark under the cursor), or clear all highlighted marks .
" * 當前MarkWord的下一個 # 當前MarkWord的上一個
" / 所有MarkWords的下一個 ? 所有MarkWords的上一個
"-----------------------------------------------------------------

"-----------------------------------------------------------------
" plugin - NERD_tree.vim 以樹狀方式瀏覽系統中的檔案和目錄
" :ERDtree 開啟NERD_tree :NERDtreeClose 關閉NERD_tree
" o 開啟關閉檔案或者目錄 t 在標籤頁中開啟
" T 在後臺標籤頁中開啟 ! 執行此檔案
" p 到上層目錄 P 到根目錄
" K 到第一個節點 J 到最後一個節點
" u 開啟上層目錄 m 顯示檔案系統選單(新增、刪除、移動操作)
" r 遞迴重新整理當前目錄 R 遞迴重新整理當前根目錄
"-----------------------------------------------------------------
" F3 NERDTree 切換
map :NERDTreeToggle
imap :NERDTreeToggle

"-----------------------------------------------------------------
" plugin - NERD_commenter.vim 註釋程式碼用的,
" [count],cc 游標以下count行逐行新增註釋(7,cc)
" [count],cu 游標以下count行逐行取消註釋(7,cu)
" [count],cm 游標以下count行嘗試新增塊註釋(7,cm)
" ,cA 在行尾插入 /* */,並且進入插入模式。 這個命令方便寫註釋。
" 注:count引數可選,無則預設為選中行或當前行
"-----------------------------------------------------------------
let NERDSpaceDelims=1 " 讓註釋符與語句之間留一個空格
let NERDCompactSexyComs=1 " 多行註釋時樣子更好看

"-----------------------------------------------------------------
" plugin - DoxygenToolkit.vim 由註釋生成文件,並且能夠快速生成函式標準註釋
"-----------------------------------------------------------------
let g:DoxygenToolkit_authorName=“Asins - asinsimple AT gmail DOT com”
let g:DoxygenToolkit_briefTag_funcName=“yes”
map da :DoxAuthor
map df :Dox
map db :DoxBlock
map dc a /* */

"-----------------------------------------------------------------
" plugin – ZenCoding.vim 很酷的外掛,HTML程式碼生成
" 外掛最新版:http://github.com/mattn/zencoding-vim
"-----------------------------------------------------------------

"-----------------------------------------------------------------
" plugin – checksyntax.vim JavaScript常見語法錯誤檢查
" 預設快捷方式為 F5
"-----------------------------------------------------------------
let g:checksyntax_auto = 0 " 不自動檢查

"-----------------------------------------------------------------
" plugin - NeoComplCache.vim 自動補全外掛
"-----------------------------------------------------------------
let g:AutoComplPop_NotEnableAtStartup = 1
let g:NeoComplCache_EnableAtStartup = 1
let g:NeoComplCache_SmartCase = 1
let g:NeoComplCache_TagsAutoUpdate = 1
let g:NeoComplCache_EnableInfo = 1
let g:NeoComplCache_EnableCamelCaseCompletion = 1
let g:NeoComplCache_MinSyntaxLength = 3
let g:NeoComplCache_EnableSkipCompletion = 1
let g:NeoComplCache_SkipInputTime = ‘0.5’
let g:NeoComplCache_SnippetsDir = $VIMFILES.’/snippets’
" completion.
inoremap pumvisible() ? “<C-n>” : “<TAB>”
" snippets expand key
imap (neocomplcache_snippets_expand)
smap (neocomplcache_snippets_expand)

"-----------------------------------------------------------------
" plugin - matchit.vim 對%命令進行擴充套件使得能在巢狀標籤和語句之間跳轉
" % 正向匹配 g% 反向匹配
" [% 定位塊首 ]% 定位塊尾
"-----------------------------------------------------------------

"-----------------------------------------------------------------
" plugin - vcscommand.vim 對%命令進行擴充套件使得能在巢狀標籤和語句之間跳轉
" SVN/git管理工具
"-----------------------------------------------------------------
"-----------------------------------------------------------------
" plugin – a.vim
"-----------------------------------------------------------------

相關文章