vim設定檔 高亮+自動縮排+行號+摺疊+最佳化

來源:互聯網
上載者:User

標籤:vim   linux   配置   

設定檔是網上找的,我把出錯的幾個地方改了下

將一下代碼copy到 使用者目錄下 建立檔案為  .vimrc
儲存即可生效; 如果想所有使用者生效 請修改 /etc/vimrc (建議先cp一份)

"=========================================================================" DesCRiption: 適合自己使用的vimrc檔案,for Linux/Windows, GUI/Console"" Last Change: 2014年08月06日"" Version: 1.0""=========================================================================set compatible            " 關閉 vi 相容模式syntax on                   " 自動文法高亮colorscheme blue       " 設定色彩配置set number                  " 顯示行號set cursorline              " 反白當前行set ruler                   " 開啟狀態列尺規set shiftwidth=4            " 設定 << 和 >> 命令移動時的寬度為 4set softtabstop=4           " 使得按退格鍵時可以一次刪掉 4 個空格set tabstop=4               " 設定 tab 長度為 4set nobackup                " 覆蓋檔案時不備份set autochdir               " 自動切換目前的目錄為當前檔案所在的目錄filetype plugin indent on   " 開啟外掛程式)t nocp                    " 使用游標鍵(例如在sun os下,開啟這個可以使用游標鍵set backupcopy=yes          " 設定備份時的行為為覆蓋對大小寫敏感se smartcase    " 搜尋時忽略大小寫,但在有一個或以上大寫字母時仍保持set nowrapscan              " 禁止在搜尋到檔案兩端時重新搜尋set incsearch               " 輸入搜尋內容時就顯示搜尋結果set hlsearch                " 搜尋時高亮顯示被找到的文本set noerrorbells            " 關閉錯誤資訊響鈴set novisualbell            " 關閉使用可視響鈴代替呼叫set t_vb=                   " 置空錯誤鈴聲的終端代碼" set showmatch               " 插入括弧時,短暫地跳轉到匹配的對應括弧" set matchtime=2             " 短暫跳轉到匹配括弧的時間set magic                   " 設定魔術 負責儲存n                  " 允許在有未儲存的修改時切換緩衝區,此時的修改由 viset guioptions-=T           " 隱藏工具列set guioptions-=m           " 隱藏功能表列set smartindent             " 開啟新行時使用智能自動縮排set backspace=indent,eol,start                            " 不設定在插入狀態無法用退格鍵和 Delete 鍵刪除斷行符號符set cmdheight=1             " 設定命令列的行數為 1set 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 <space> @=((foldclosed(line(‘.‘)) < 0) ? ‘zc‘ : ‘zo‘)<CR>                            " 用空格鍵來開關摺疊" 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"    endifendfunction" 使用者目錄變數$VIMFILESif 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:cANSIendif" 配置多語言環境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    endifelse    echoerr "Sorry, this version of (g)vim was not compiled with +multi_byte"endif" Buffers操作捷徑!nnoremap <C-RETURN> :bnext<CR>nnoremap <C-S-RETURN> :bprevious<CR>" Tab操作捷徑!nnoremap <C-TAB> :tabnext<CR>nnoremap <C-S-TAB> :tabprev<CR>"關於tab的快速鍵" map tn :tabnext<cr>" map tp :tabprevious<cr>" map td :tabnew .<cr>" map te :tabedit" map tc :tabclose<cr>"視窗分割時,進行切換的按鍵熱鍵需要串連兩次,比如從下方視窗移動"游標到上方視窗,需要<c-w><c-w>k,非常麻煩,現在重新對應為<c-k>,切換的"時候會變得非常方便.nnoremap <C-h> <C-w>hnnoremap <C-j> <C-w>jnnoremap <C-k> <C-w>knnoremap <C-l> <C-w>l"一些不錯的映射轉換文法(如果在一個檔案中混合了不同語言時有用)nnoremap <leader>1 :set filetype=xhtml<CR>nnoremap <leader>2 :set filetype=css<CR>nnoremap <leader>3 :set filetype=javascript<CR>nnoremap <leader>4 :set filetype=php<CR>" set fileformats=unix,dos,mac" nmap <leader>fd :se fileformat=dos<CR>" nmap <leader>fu :se fileformat=unix<CR>" use Ctrl+[l|n|p|cc] to list|next|previous|jump to count the result" map <C-x>l <ESC>:cl<CR>" map <C-x>n <ESC>:cn<CR>" map <C-x>p <ESC>:cp<CR>" map <C-x>c <ESC>:cc<CR>" 讓 Tohtml 產生有 CSS 文法的 html" syntax/2html.vim,可以用:runtime! syntax/2html.vimlet html_use_css=1" Python 檔案的一般設定,比如不要 tab 等autocmd FileType python set tabstop=4 shiftwidth=4 expandtabautocmd FileType python map <F12> :!python %<CR>" 選中狀態下 Ctrl+c 複製vmap <C-c> "+y" 開啟javascript摺疊let b:javascript_fold=1" 開啟javascript對dom、html和css的支援let javascript_enable_domhtmlcss=1" 設定字典 ~/.vim/dict/檔案的路徑autocmd filetype javascript set dictionary=$VIMFILES/dict/javascript.dictautocmd filetype css set dictionary=$VIMFILES/dict/css.dictautocmd 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‘endifnnoremap <silent><F4> :TlistToggle<CR>的t Tlist_Show_One_File = 1            " 不同時顯示多個檔案的tag,只顯示當前檔案met Tlist_Exit_OnlyWindow = 1          " 如果taglist視窗是最後一個視窗,則退出vlet Tlist_Use_Right_Window = 1         " 在右側視窗中顯示taglist視窗let Tlist_File_Fold_Auto_Close=1       " 自動摺疊當前非編輯檔案的方法列表let Tlist_Auto_Open = 0let Tlist_Auto_Update = 1let Tlist_Hightlight_Tag_On_BufEnter = 1let Tlist_Enable_Fold_Column = 0let Tlist_Process_File_Always = 1let Tlist_Display_Prototype = 0let 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 highlighte 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 <F3> :NERDTreeToggle<CR>imap <F3> <ESC>:NERDTreeToggle<CR>"-----------------------------------------------------------------" 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 <leader>da :DoxAuthor<CR>map <leader>df :Dox<CR>map <leader>db :DoxBlock<CR>map <leader>dc a /*  */<LEFT><LEFT><LEFT>"-----------------------------------------------------------------" plugin – ZenCoding.vim 很酷的外掛程式,HTML代碼產生" 外掛程式最新版:http://github.com/mattn/zencoding-vim" 常用命令可看:http://nootn.com/blog/Tool/23/"-----------------------------------------------------------------"-----------------------------------------------------------------" plugin – checksyntax.vim    JavaScript常見語法錯誤檢查" 預設捷徑為 F5"-----------------------------------------------------------------let g:checksyntax_auto = 0 " 不自動檢查"-----------------------------------------------------------------" plugin - NeoComplCache.vim    自動補全外掛程式"-----------------------------------------------------------------let g:AutoComplPop_NotEnableAtStartup = 1let g:NeoComplCache_EnableAtStartup = 1let g:NeoComplCache_SmartCase = 1let g:NeoComplCache_TagsAutoUpdate = 1let g:NeoComplCache_EnableInfo = 1let g:NeoComplCache_EnableCamelCaseCompletion = 1let g:NeoComplCache_MinSyntaxLength = 3let g:NeoComplCache_EnableSkipCompletion = 1let g:NeoComplCache_SkipInputTime = ‘0.5‘let g:NeoComplCache_SnippetsDir = $VIMFILES.‘/snippets‘" <TAB> completion."inoremap <expr><TAB> pumvisible() ? "/<C-n>" : "/<TAB>"" snippets expand keyimap <silent> <C-e> <Plug>(neocomplcache_snippets_expand)smap <silent> <C-e> <Plug>(neocomplcache_snippets_expand)"-----------------------------------------------------------------" plugin - matchit.vim   對%命令進行擴充使得能在嵌套標籤和語句之間跳轉" % 正向匹配      g% 反向匹配" [% 定位塊首     ]% 定位塊尾"-----------------------------------------------------------------"-----------------------------------------------------------------" plugin - vcscommand.vim   對%命令進行擴充使得能在嵌套標籤和語句之間跳轉" SVN/git管理工具"-----------------------------------------------------------------"-----------------------------------------------------------------" plugin – a.vim"-----------------------------------------------------------------

參考:http://blog.csdn.net/neighbor1000/article/details/8707450

      http://blog.sciencenet.cn/blog-683919-667321.html

本文出自 “閑潭小築” 部落格,請務必保留此出處http://soarwilldo.blog.51cto.com/5520138/1541142

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.