vimrcの設定

VIMのインストール
sudo apt-get install vim (ubuntu)
sudo yum install vim (redhat, centos, fedora)

vim_install.sh
#!/bin/bash

vim_tar="vim-7.4.tar.bz2″
vim_src="vim74″
cfg_op="–enable-cscope –enable-gui –enable-pythoninterp –enable-pythoninterp –enable-xim –enable-rubyinterp –enable-multibyte"

tar jxf $vim_tar

cd $vim_src
./configure $cfg_op && make && sudo make install || exit

cd ..
rm -rf $vim_src

vi_file=`which vi`
sudo rm $vi_file
sudo ln `which vim` $vi_file

echo “——— Done ——–"

vimrc.txt
" vimrc by Godson@ustcbbs
" Last Update: 2013-06-19

let mapleader = “\\" " コメント内容を書く
" スペースは:をマップする:
nmap :

" vimrcファイルを開いて編集
map ee :e $HOME/.vimrc
autocmd! bufwritepost *.vimrc source $HOME/.vimrc

" ファイルの保存
nmap ww :w!
" ^z早速shellに入る
nmap :shell

" OSの判断
if (has(“win32") || has(“win64") || has(“win32unix"))
let g:isWin = 1
else
let g:isWin = 0
endif

" 端末またはgvimを判断する
if has(“gui_running")
let g:isGUI = 1
else
let g:isGUI = 0
endif

set nocompatible " 互換モードをオフにする
syntax enable " シンタックスハイライト
filetype plugin on " ファイルタイププラグイン
filetype indent on
set autoindent
autocmd BufEnter * :syntax sync fromstart
set nu " 显示行号 行番号の表示
set showcmd " コマンドの表示
set lz " マクロを実行すると、コマンドの完了前に画面を再描画しない
set hid " 保存しない場合にbufferを切り替えることができる
set backspace=eol,start,indent
set whichwrap+=<,>,h,l " バックスペースと矢印キーで改行できる
set incsearch " 増量式検索
set hlsearch " ハイライト検索
set ignorecase " 検索時に大文字と小文字を区別しない
set magic "
set showmatch " 括弧表示一致する
set nobackup " バックアップを閉じる
set nowb
set noswapfile " swapファイルを使用しない、エラーが終了した後に復元することができないのでご注意
set lbr " breakat文字列改行して最後の文字列ではない
set ai " 自動インデント
set si " 知能インデント
set cindent " C/C++スタイルインデント
set wildmenu
set nofen
set fdl=10

" tabで4個文字列へ変換
set expandtab
set smarttab
set shiftwidth=4
set tabstop=4

“beepまたflashを使用しない
set vb t_vb=

set background=dark
colorscheme desert
“set t_Co=256

set history=400 " vimで操作の履歴数量を覚えておく,ディフォルトは20
set autoread " ァイルが外部で変更された場合自動再読み込む
set mouse=a " すべてのモードではマウスの使用を許可またn,v,i,cなども利用する

“gvimの中で現在の行目をハイライト
if (g:isGUI)
set cursorline
hi cursorline guibg=#333333
hi CursorColumn guibg=#333333
set guifont=Consolas\ 14
set guifontwide=Consolas\ 14
endif

" 文字のエンコーディングを設定して、ディフォルトはUTF8です
if (g:isWin)
let &termencoding=&encoding " 通常winのencodingはcp936です
set fileencodings=utf8,cp936,ucs-bom,latin1
else
set encoding=utf8
set fileencodings=utf8,gb2312,gb18030,ucs-bom,latin1
endif

“ステータスバー
set laststatus=2 " 常にステータスバーを表示
highlight StatusLine cterm=bold ctermfg=yellow ctermbg=blue
" 現在のパスを取得,$HOMEへ変換~
function! CurDir()
let curdir = substitute(getcwd(), $HOME, “~", “g")
return curdir
endfunction
set statusline=[%n]\ %f%m%r%h\ \|\ \ pwd:\ %{CurDir()}\ \ \|%=\|\ %l,%c\ %p%%\ \|\ ascii=%b,hex=%b%{((&fenc==\"\")?\"\":\"\ \|\ \".&fenc)}\ \|\ %{$USER}\ @\ %{hostname()}\

" 最初の80列背中に下線を引く
“au BufWinEnter * let w:m2=matchadd('Underlined’, '\%>’ . 80 . 'v.\+’, -1)

" 現在のマウスポインタのおりる単語を検索して、下記二つを縛って使う
function! VisualSearch(direction) range
let l:saved_reg = @"
execute “normal! vgvy"
let l:pattern = escape(@", '\\/.*$^~[]’)
let l:pattern = substitute(l:pattern, “\n{1}quot;, “", “")
if a:direction == 'b’
execute “normal ?" . l:pattern . “"
else
execute “normal /" . l:pattern . “"
endif
let @/ = l:pattern
let @" = l:saved_reg
endfunction
" */#で 前進/後退 カーソル下のワードを検索
vnoremap * :call VisualSearch('f’)
vnoremap # :call VisualSearch('b’)

" ファイル名にgfを押したとき、新しいtabで開く
“map gf :tabnew

" c-j,kでbufferの間に切り替える
nn :bn
nn :bp
nn :b1

" Bash(Emacs)スタイルのキーボードバインディング
imap
imap
“imap d0i
“imap d$i " 自動補完と競合

" 前回ファイルを開いた位置を回復
set viminfo=’10,\"100,:20,%,n~/.viminfo
au BufReadPost if line(“'\"") > 0|if line(“'\"") <= line("{1}quot;)|exe("norm '\"")|else|exe "norm {1}quot;|endif|endif "bufferを削除してウィンドウを閉めません command! Bclose call BufcloseCloseIt()
function! BufcloseCloseIt()
let l:currentBufNum = bufnr(“%")
let l:alternateBufNum = bufnr(“#")

if buflisted(l:alternateBufNum)
buffer #
else
bnext
endif

if bufnr(“%") == l:currentBufNum
new
endif

if buflisted(l:currentBufNum)
execute(“bdelete! “.l:currentBufNum)
endif
endfunction

" 高速入力
" 括弧と引用符号をオートコンプリート
inoremap 1 ():let leavechar=")"i
inoremap 2 []:let leavechar="]"i
inoremap 3 {}:let leavechar="}"i
inoremap 4 {o}:let leavechar="}"O
inoremap q ":let leavechar="'"i
inoremap w “":let leavechar='"'i

" 略語
iab idate =strftime(“%Y-%m-%d")
iab itime =strftime(“%H:%M")
iab ifile =expand(“%:t")
“個人情報
iab iauth Chunjun Li
iab iemail updater@arkgame.com
iab igmail publisher@arkgame.com
iab iname Chunjun Li

" プラグインウィンドの幅,例えばTagList,NERD_treeなど,独自のセットアップ
let s:PlugWinSize = 40

" ShowFunc.vim <-------- また使用しない " http://www.vim.org/scripts/script.php?script_id=397 " F2でShowFunc TagListウィンドを開く,C/C++関数モードを表示 " map ShowFunc
" map! ShowFunc

" taglist.vim
" http://www.vim.org/scripts/script.php?script_id=273
" tl でTagListウィンドウを開く,ウィンドウは左です
nmap tl :TlistToggle
“let Tlist_Ctags_Cmd = '/usr/bin/ctags’
let Tlist_Show_One_File = 0
let Tlist_Exit_OnlyWindow = 1
let Tlist_Use_Right_Window = 0
let Tlist_File_Fold_Auto_Close = 1
let Tlist_GainFocus_On_ToggleOpen = 0
let Tlist_WinWidth = s:PlugWinSize
let Tlist_Auto_Open = 0
let Tlist_Display_Prototype = 0
“let Tlist_Close_On_Select = 1

" minibufexpl.vim
" http://www.vim.org/scripts/script.php?script_id=159
" 何も設定する必要はありません

" OmniCppComplete.vim
" http://www.vim.org/scripts/script.php?script_id=1520
set completeopt=menu
let OmniCpp_ShowPrototypeInAbbr = 1
let OmniCpp_DefaultNamespaces = [“std"] " カンマで区切りられた文字列
let OmniCpp_MayCompleteScope = 1
let OmniCpp_ShowPrototypeInAbbr = 0
let OmniCpp_SelectFirstItem = 2
" c-j自動補完,メニューが開いて,c-j,k 上から下まで選択する
imap pumvisible()?"\“:"\"
imap pumvisible()?"\“:"\"
" f:ファイル名補完,l:行補完,d:辞書補完,]:tag補完
imap
imap
imap
imap

" NERD_commenter.vim
" http://www.vim.org/scripts/script.php?script_id=1218
" Toggle1行コメント/行尾のコメント/コメントキャンセル
map cc ,c
map cs ,cs
map c$ ,c$
map cu ,cu

" NERD tree
" http://www.vim.org/scripts/script.php?script_id=1658
let NERDTreeShowHidden = 1
let NERDTreeWinPos = “right"
let NERDTreeWinSize = s:PlugWinSize
nmap n :NERDTreeToggle

" DoxygenToolkit.vim
" http://www.vim.org/scripts/script.php?script_id=987
" しばらく使ってません

" ctagsとcscopeインデックスを更新
" DeleteFile関数を取得して,ctagsとcscopeを修正してコマンドを実行
map :call RefleashTagsAndCscope()
function! RefleashTagsAndCscope()
let dir = getcwd()

“ まず既存のtagsとcscopeファイルを削除して,存在しかも削除できないならば、エラーメッセージが出る。
if ( DeleteFile(dir, “tags") )
return
endif
if ( DeleteFile(dir, “cscope.*") )
return
endif

if(executable('ctags’))
silent! execute “!ctags -R –c++-kinds=+p –fields=+iaS –extra=+q ."
endif
if(executable('cscope’) && has(“cscope") )
if(g:isWin)
silent! execute “!dir /s/b *.c,*.cpp,*.h,*.java,*.cs >> cscope.files"
else
silent! execute “!find . -iname '*.[ch]’ -o -name '*.cpp’ > cscope.files"
endif
silent! execute “!cscope -bkq"
silent! execute “!rm -f cscope.files"
execute “normal :"
if filereadable(“cscope.out")
execute “cs add cscope.out"
endif
endif
“画面をリフレッシュする
execute “redr!"
endfunction

function! DeleteFile(dir, filename)
if filereadable(a:filename)
if (g:isWin)
let ret = delete(a:dir."\\".a:filename)
else
let ret = delete(“./".a:filename)
endif
if (ret != 0)
echohl WarningMsg | echo “Failed to delete “.a:filename | echohl None
return 1
else
return 0
endif
endif
return 0
endfunction

" cscope バインディング
if has(“cscope")
set csto=1
set cst
set nocsverb
if filereadable(“cscope.out")
cs add cscope.out
endif
set csverb

nmap s :cs find s =expand(““)
nmap g :cs find g =expand(““)
nmap c :cs find c =expand(““)
nmap t :cs find t =expand(““)
nmap e :cs find e =expand(““)
nmap f :cs find f =expand(““)
nmap i :cs find i =expand(““)
nmap z :cs find i =expand(“%:t")
nmap d :cs find d =expand(““)

" Split herizontally, with search result displayed in the new window.
nmap hs :scs find s =expand(““)
nmap hg :scs find g =expand(““)
nmap hc :scs find c =expand(““)
nmap ht :scs find t =expand(““)
nmap he :scs find e =expand(““)
nmap hf :scs find f =expand(““)
nmap hi :scs find i =expand(““)
nmap hz :scs find i =expand(“%:t")
nmap hd :scs find d =expand(““)

" Do vertical split and do scs search, result will put into new window.
nmap vs :vert scs find s =expand(““)
nmap vg :vert scs find g =expand(““)
nmap vc :vert scs find c =expand(““)
nmap vt :vert scs find t =expand(““)
nmap ve :vert scs find e =expand(““)
nmap vf :vert scs find f =expand(““)
nmap vi :vert scs find i =expand(““)
nmap vz :vert scs find i =expand(“%:t")
nmap vd :vert scs find d =expand(““)
endif

" Quick Fix 設定
map cw :cw
map :cp
map :cn

" lookup file
" http://www.vim.org/scripts/script.php?script_id=1581
" 行を追加(line 295): let pattern = '\c’ . a:pattern
" F5を押すか、またはFFファイル検索ウィンドウを開く
let g:LookupFile_MinPatLength = 0
let g:LookupFile_PreserveLastPattern = 0
let g:LookupFile_PreservePatternHistory = 0
let g:LookupFile_AlwaysAcceptFirst = 1
let g:LookupFile_AllowNewFiles = 0

if filereadable(“./filenametags")
let g:LookupFile_TagExpr = '"./filenametags"'
endif
nmap ff :LookupFile

function! LookupFile_IgnoreCaseFunc(pattern)
let _tags = &tags
try
let &tags = eval(g:LookupFile_TagExpr)
let newpattern = '\c’ . a:pattern
let tags = taglist(newpattern)
catch
echohl ErrorMsg | echo “Exception: " . v:exception | echohl NONE
return “"
finally
let &tags = _tags
endtry

" Show the matches for what is typed so far.
let files = map(tags, 'v:val[“filename"]’)
return files
endfunction
let g:LookupFile_LookupFunc = 'LookupFile_IgnoreCaseFunc’

" Buffers Explorer (genutils.vimが必要)
" http://vim.sourceforge.net/scripts/script.php?script_id=42
" http://www.vim.org/scripts/script.php?script_id=197
let g:bufExplorerDefaultHelp=0 " Do not show default help.
let g:bufExplorerShowRelativePath=1 " Show relative paths.
let g:bufExplorerSortBy=’mru’ " Sort by most recently used.
let g:bufExplorerSplitRight=0 " Split left.
let g:bufExplorerSplitVertical=1 " Split vertically.
let g:bufExplorerSplitVertSize = s:PlugWinSize " Split width
let g:bufExplorerUseCurrentWindow=1 " Open in new window.
autocmd BufWinEnter \[Buf\ List\] setl nonumber
nmap b :BufExplorer

Source

Posted by arkgame