Browse Source

fix

remotes/origin/master
Ein Verne(einverne) 10 years ago
parent
commit
fc8b32cd17
  1. 29
      _vimrc
  2. 2
      python_vimrc

29
_vimrc

@ -12,11 +12,22 @@ source $VIMRUNTIME/mswin.vim
" => General " => General
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" Sets how many lines of history VIM has to remember " Sets how many lines of history VIM has to remember
set history=700 set history=1000
" set to auto read when a file is changed outside " set to auto read when a file is changed outside
set autoread set autoread
" with a map leader it's possible to do extra key combinations
" like <leader>w saves the current file
let mapleader = ","
let g:mapleader = ","
" fast saving
nmap <leader>w :w!<cr>
"编辑vimrc之后,重新加载
autocmd! bufwritepost _vimrc source $VIM/_vimrc
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => VIM user interface " => VIM user interface
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
@ -26,6 +37,9 @@ set scrolloff=8
" 如下命令使鼠标用起来象微软 Windows " 如下命令使鼠标用起来象微软 Windows
behave mswin behave mswin
" 高亮整行
set cursorline
" always show current position " always show current position
set ruler set ruler
" height of the command bar " height of the command bar
@ -52,6 +66,17 @@ set magic
set showcmd set showcmd
if has('multi_byte_ime')
"未开启IME时光标背景色
hi Cursor guifg=bg guibg=Orange gui=NONE
"开启IME时光标背景色
hi CursorIM guifg=NONE guibg=Skyblue gui=NONE
" 关闭Vim的自动切换IME输入法(插入模式和检索模式)
set iminsert=0 imsearch=0
" 插入模式输入法状态未被记录时,默认关闭IME
"inoremap <silent> <ESC> <ESC>:set iminsert=0<CR>
endif
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
" => Colors and Fonts " => Colors and Fonts
""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" """""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""
@ -176,7 +201,7 @@ autocmd BufWrite *.py :call DeleteTrailingWS()
autocmd BufWrite *.coffee :call DeleteTrailingWS() autocmd BufWrite *.coffee :call DeleteTrailingWS()
set diffexpr=MyDiff() set diffexpr=MyDiff()
function MyDiff() function! MyDiff()
let opt = '-a --binary ' let opt = '-a --binary '
if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif if &diffopt =~ 'icase' | let opt = opt . '-i ' | endif
if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif if &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endif

2
python_vimrc

@ -25,7 +25,7 @@ au BufRead,BufNewFile *py,*pyw,*.c,*.h set tabstop=8
" C: tabs (pre-existing files) or 4 spaces (new files) " C: tabs (pre-existing files) or 4 spaces (new files)
au BufRead,BufNewFile *.py,*pyw set shiftwidth=4 au BufRead,BufNewFile *.py,*pyw set shiftwidth=4
au BufRead,BufNewFile *.py,*.pyw set expandtab au BufRead,BufNewFile *.py,*.pyw set expandtab
fu Select_c_style() fu Select_c_style!()
if search('^\t', 'n', 150) if search('^\t', 'n', 150)
set shiftwidth=8 set shiftwidth=8
set noexpandtab set noexpandtab

Loading…
Cancel
Save