my vimrc profile

set nu
set mouse=a
set tabstop=4
set shiftwidth=4
set expandtab
set nobackup
set nowb 
set noswapfile 
set showmatch 

syntax enable 
syntax on 
colorscheme desert
set cindent

let g:winManagerWidth = 30
let g:winManagerWindowLayout = "FileExplorer|BufExplorer"
"let g:winManagerWindowLayout='FileExplorer|TagList'

nmap wm :WMToggle 

au VimEnter * WMToggle

set tags=tags;
set tags+=~/.vim/systags

"######configure taglist
let Tlist_Ctags_cmd = $VIM.'/usr/bin/ctags'
"let Tlist_Sort_Type = "name"
let Tlist_File_Fold_Auto_Close = 1
let Tlist_Enable_Fold_Column = 0
let Tlist_Use_SingleClick = 1

let Tlist_Show_One_File=1
let Tlist_Exit_OnlyWindow=1
let Tlist_Use_Right_Window = 1
let Tlist_Auto_Open=1


"######configure cscope
"set cscopequickfix=s-,c-,d-,i-,t-,e-
execute "cscope add ./cscope.out"

"global definition
nmap :cs find s =expand("")
"reference
nmap :cs find c =expand("")
"definition
nmap :cs find g =expand("")
"file
nmap :cs find f =expand("")
"match
nmap :/=expand("")
"folder
nmap zf%
"NERDTree explore window
nmap :NERDTreeToggle
""toggle taglist window
nmap :TlistToggle

你可能感兴趣的:(Linux)