diff --git a/.vimrc b/.vimrc index fdb3eb4..4adeffd 100644 --- a/.vimrc +++ b/.vimrc @@ -1,17 +1,10 @@ -filetype plugin indent on " required -set number "设置显示行号 -set showcmd "在状态栏显示正在输入的命令 -set background=dark "为深色背景调整配色 +filetype plugin indent on +set number +set showcmd +set background=dark set tabstop=4 shiftwidth=4 expandtab set laststatus=2 -set cursorline "十字光標 横向 -"set cursorcolumn "十字光标 纵向 - -syntax on "开启语法高亮 +set cursorline +syntax on syntax enable -if has('gui_running') - colorscheme solarized - set guifont=Monaco:h20 -endif -