GVIM vimrc windows配置

來源:互聯網
上載者:User
我的VIM配置是基於http://amix.dk 網站的vimrc的。
配置過程可以參考[http://amix.dk/blog/post/19486#The-ultimate-vim-configuration-vimrc]
首先從vim.org網站下載vim7.3的安裝程式,安裝。
然後通過SVN工具下載svn://orangoo.com/vim中的檔案,將其全部複製到$VIM\vimfiles目錄下。
修改$VIM\_vimrc,在檔案末尾添加:
{{{
    "add zxim.dk vim
    fun! MySys()
        return "windows"
    endfun
    source $VIM\vimfiles\vimrc
}}}
執行:helptags $VIM\vimfiles\doc匯入協助檔案
由於我的外掛程式路徑和zikm的路徑不同,所以還需要對原檔案進行一下修改一下:
找到
{{{
if MySys() == "windows"
    " Fast editing of the .vimrc
    map <leader>e :e! ~/_vim_runtime/vimrc<cr>
    " When vimrc is edited, reload it
    autocmd! bufwritepost vimrc source ~/_vim_runtime/vimrc
}}}
將其中的vimrc路徑改為$VIM\vimfiles\vimrc
這樣安裝後的GVIM在中文環境下是有亂碼的,需要把以下配置注釋掉:
{{{
    set encoding=utf8
    try
        lang en_US
    catch
    endtry
}}}    
我個人是希望能夠把minibuf放在視窗頂部的,所以對MiniBuffer的配置做如下修改:
{{{
    "let g:miniBufExplVSplit = 30
    "let g:miniBufExplSplitBelow=1
    let g:miniBufExplSplitToEdge = 1     
    let g:miniBufExplMaxSize = 3 
}}}
另外去掉menubar toolbar, scrollbar:
{{{
        set guioptions-=T
        set guioptions-=m
        set guioptions-=L
        set guioptions-=r
}}}
這樣就安裝了amix的配置,下面添加我自己的配置。
從vim.org下載vimwiki外掛程式,這是vba格式,使用GVim開啟,在Normal模式下執行:so %即可安裝成功。
對於vimwiki我們可以配置wiki檔案的路徑如下:
{{{
    let g:vimwiki_list = [{'path': 'D:\D\VimWiki', 'path_html': 'D:\D\VimWiki\html'}]
}}}
下載vimgtd,解壓後複製到$VIM\vimfiles\目錄下,就安裝了gtd外掛程式,由於snipMate對於<tab>的映射與vimwiki重複,所以需要禁掉
{{{
    let g:vimwiki_table_auto_fmt = 0
}}}
並為vimgtd添加如下捷徑:
{{{
    map <leader>tt :TaskToday<cr>
    map <leader>tn :TaskAll<cr>
}}}
下載Ctag和Cscope的可執行檔,並將其解壓目錄加到環境變數的path中去。
http://sourceforge.net/projects/mslk/files/
http://ctags.sourceforge.net/
下載taglist和cscope_map(http://cscope.sourceforge.net/cscope_maps.vim) 並安裝。
為cscope添加配置如下:
{{{
    if has("cscope")
      if MySys() == "linux"
        set csprg=/usr/bin/cscope
      else
        set csprg=cscope
      endif
      set csto=1
      set cst
      set nocsverb
      " add any database in current directory
      if filereadable("cscope.out")
          cs add cscope.out
      endif
      set csverb
    endif
}}}
為taglist添加配置如下:
{{{
   if MySys() == "windows"
     let Tlist_Ctags_Cmd = 'ctags'
   elseif MySys() == "linux"
     let Tlist_Ctags_Cmd = '/usr/bin/ctags'
   endif
   let Tlist_Show_One_File = 1
   let Tlist_Exit_OnlyWindow = 1
   let Tlist_Use_Right_Window = 1
   nmap <silent> <leader>tl :Tlist<cr>
}}}
相關文章

聯繫我們

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