首页 > 代码库 > 我的vimrc

我的vimrc

 1 #set number 2 set showmatch 3 set hlsearch 4 set incsearch 5 set ruler 6 set cursorline 7 set cursorcolumn 8  9 set tabstop=210 set expandtab11 set shiftwidth=212 set autoindent13 set nocompatible14 set backspace=indent,eol,start15 16 syntax on17 18 au BufNewFile,BufRead *.gv setf Verilog19 au BufNewFile,BufRead *.sv set filetype=systemverilog20 21 map <F5> :e! <CR>22 map <F11> :set autoindent<CR>23 map <F12> :set noautoindent<CR>

 

我的vimrc