我的vimrc,留而利值(不定期更新)

来源:互联网 发布:淘宝特卖品牌女装 编辑:程序博客网 时间:2024/05/23 14:50
"Jiangboyao's personal vimrc


set fileencodings=utf-8


set nocompatible " Use Vim defaults (much better!)


set bs=indent,eol,start " allow backspacing over everything in insert mode


set cindent " always set c-mode autoindent


set viminfo='20,\"50 " read/write a .viminfo file, don't store more
            " than 50 lines of registers
set history=50 " keep 50 lines of command line history


set ruler " show the cursor position all the time


"In fact, the following line is disabled.
hi CursorLine cterm=NONE ctermbg=NONE ctermfg=NONE guifg=NONE
"In fact, the following line is disabled.
highlight LineNr ctermfg=black ctermbg=white


set laststatus=2


colorscheme desert


"Map ctrl + s to save file
map <C-S> :update<CR>
"Map ctrl + q to quit file
map <C-Q> :q!<CR>


"Later considering maps
map <silent> <F4> :TlistToggle<cr>
map <silent> <F3> :NERDTree<cr>
let Tlist_Ctags_Cmd='/usr/local/bin/ctags'
let Tlist_Show_One_File=1
let Tlist_Exit_OnlyWindow=1


set expandtab
set tabstop=4
set shiftwidth=4
set softtabstop=4


set number


set mouse=a
set syntax=on


"pydiction 1.2 python auto complete
filetype plugin on
let g:pydiction_location = '/usr/share/vim/vim72/pydiction/complete-dict'
let g:pydiction_menu_height = 20


if has("autocmd")
  augroup redhat
  autocmd!
  " In text files, always limit the width of text to 78 characters
  autocmd BufRead *.txt set tw=78
  " When editing a file, always jump to the last cursor position
  autocmd BufReadPost *
  \ if line("'\"") > 0 && line ("'\"") <= line("$") |
  \   exe "normal! g'\"" |
  \ endif
  " don't write swapfile on most commonly used directories for NFS mounts or USB sticks
  autocmd BufNewFile,BufReadPre /media/*,/mnt/* set directory=~/tmp,/var/tmp,/tmp
  " start with spec file template
  autocmd BufNewFile *.spec 0r /usr/share/vim/vimfiles/template.spec
  augroup EN
endif


if has("cscope") && filereadable("/usr/bin/cscope")
   set csprg=/usr/bin/cscope
   set csto=0
   set cst
   set nocsverb
   " add any database in current directory
   if filereadable("cscope.out")
      cs add cscope.out
   " else add database pointed to by environment
   elseif $CSCOPE_DB != ""
      cs add $CSCOPE_DB
   endif
   set csverb
endif


" Switch syntax highlighting on, when the terminal has colors
" Also switch on highlighting the last used search pattern.
if &t_Co > 2 || has("gui_running")
  syntax on
  set hlsearch
endif


"filetype plugin on


if &term=="xterm"
     set t_Co=8
     set t_Sb=[4%dm
     set t_Sf=[3%dm
endif


" Don't wake up system with blinking cursor:
" http://www.linuxpowertop.org/known.php
let &guicursor = &guicursor . ",a:blinkon0"
0 0
原创粉丝点击