日期:2014-05-16  浏览次数:20664 次

linux下配置vim
在用户主目录下创建.vimrc文件

内容如下:
set nu                                                
syntax on           "syntax highlight
set cursorline      "have cursorline
set cindent         "   
set smartindent     "   
set autoindent      "   
set hlsearch        "highlight search word
set shiftwidth=4    "   
set tabstop=4       "tab = 4
map <silent> <F10> :TlistToggle<cr>     "use <Fn> to open/close Tlist
"let Tlist_Auto_Open=1                  "每次自动打开Tlist
let Tlist_Show_One_File = 1             "不同时显示多个文件的tag,只显示当前文件的
let Tlist_Exit_OnlyWindow = 1           "如果taglist窗口是最后一个窗口,则退出vim
"let Tlist_Use_Right_Window = 1         "在右侧窗口中显示taglist窗口
set showmatch       "设置自动检测括号是否匹配
set incsearch
set ruler
set laststatus=2    "显示当前文件名
                                        
"自动跳转到上次文件打开的位置
  autocmd BufReadPost *
    \ if line("'\"") > 0 && line("'\"") <= line("$") |
    \   exe "normal! g`\"" |
    \ endif