Browse Source

set no backup file

remotes/origin/master
Ein Verne 10 years ago
parent
commit
fc5919c281
  1. 20
      _vimrc

20
_vimrc

@ -36,6 +36,18 @@ behave mswin
" using monokai background color " using monokai background color
let g:molokai_original = 1 let g:molokai_original = 1
" Ignore case when searching
set ignorecase
" When searching try to be smart about cases
set smartcase
" Highlight search results
set hlsearch
" Makes search act like search in modern browsers
set incsearch
"vim内部编码 "vim内部编码
set encoding=utf-8 set encoding=utf-8
"按照utf-8 without bom,utf-8,顺序识别打开文件 "按照utf-8 without bom,utf-8,顺序识别打开文件
@ -91,7 +103,13 @@ set statusline+=%3*%c, "column
set statusline+=%l/%L "line no/all line" set statusline+=%l/%L "line no/all line"
set statusline+=\ %P set statusline+=\ %P
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Files, backups and undo
"""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Turn backup off, since most stuff is in SVN, git et.c anyway...
set nobackup
set nowb
set noswapfile
set diffexpr=MyDiff() set diffexpr=MyDiff()
function MyDiff() function MyDiff()

Loading…
Cancel
Save