vim是一個很強的神器,對于我隻用到其中的一小部分内容,接下來是我打造 php
IDE的全過程,希望有兄弟能指點我其中的不足,要學習的兄弟能跟我一起努力學習。
第一步:配_vimrc,配成自己喜歡的樣式。
代碼:
set nocompatible “關閉 vi 相容模式
syntax on ” 自動文法高亮
hi LineNr guifg=black
:set background=dark
:colorscheme evening
set number ” 顯示行号
set cursorline ” 突出顯示目前行
set ruler ” 打開狀态欄标尺
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=\ %
%0(%{&fileformat}\ %{&encoding}\
%c:%l/%L%)\
” 設定在狀态行顯示的資訊
set foldenable ” 開始折疊
set foldmethod=marker ” 設定文法折疊
set foldcolumn=4 ” 設定折疊區域的寬度
setlocal foldlevel=3 ” 設定折疊層數為
:set foldopen=all
: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