mac 下vim 設定檔

來源:互聯網
上載者:User

標籤:des   style   blog   http   java   color   

" Configuration file for vimset modelines=0 " CVE-2007-2438" Normally we use vim-extensions. If you want true vi-compatibility" remove change the following statementsset nocompatible " Use Vim defaults instead of 100% vi compatibilityset backspace=2 " more powerful backspacing"=========================================================================" DesCRiption: 適合自己使用的vimrc檔案,for Linux/Windows, GUI/Console"" Last Change: 2014.7.10"" Version: 1.80""=========================================================================set nocompatible " 關閉 vi 相容模式syntax on " 自動文法高亮colorscheme darkblue "desert molokai  設定色彩配置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 " 開啟外掛程式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 " 設定命令列的行數為 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-8set termencoding=utf-8set formatoptions+=mMset fencs=utf-8,gbkif v:lang =~? '^\(zh\)\|\(ja\)\|\(ko\)'set ambiwidth=doubleendifif has("win32")source $VIMRUNTIME/delmenu.vimsource $VIMRUNTIME/menu.vimlanguage messages zh_CN.utf-8endifelseechoerr "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>let Tlist_Show_One_File = 1 " 不同時顯示多個檔案的tag,只顯示當前檔案的let Tlist_Exit_OnlyWindow = 1 " 如果taglist視窗是最後一個視窗,則退出vimlet 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 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 <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)" Don't write backup file if vim is being called by "crontab -e"au BufWrite /private/tmp/crontab.* set nowritebackup" Don't write backup file if vim is being called by "chpass"au BufWrite /private/etc/pw.* set nowritebackup


相關文章

聯繫我們

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