" ================================ base setting ================================ set nocompatible set number filetype plugin indent on sethistory=1000 setbackground=dark syntax on syntax enable set ruler set showmatch setlaststatus=2 set showmode set ignorecase set nofoldenable " 不折叠代码 set showcmd set mouse=a " 开启鼠标 set wrap set noerrorbells setbackspace=2
" 设置molokai主题 let mapleader=',' let g:molokai_original = 1 let g:rehash256 = 1 set t_Co=256 colorscheme molokai
" search set hlsearch set incsearch
" 文件编码 set termencoding=utf-8 set encoding=utf8 set fileencodings=utf8,ucs-bom,gbk,cp936,gb2312,gb18030
" 分割布局 set splitbelow set splitright
" 用浅颜色高亮当前行,列 set cul set cuc highlight CursorLine cterm=NONE ctermbg=black ctermfg=blue guibg=NONE guifg=NONE highlight CursorColumn cterm=NONE ctermbg=black ctermfg=blue guibg=NONE guifg=NONE
" 缩进方式 set autoindent set smartindent settabstop=4 setshiftwidth=4
" 备份 if has("vms") set nobackup "donot keep a backup file, use versions instead else set backup " keep a backup file (restore to previous version) if has('persistent_undo') set undofile " keep an undo file (undo changes after closing) endif endif
if has("vms") set nobackup " do not keep a backup file, use versions instead else set backup " keep a backup file (restore to previous version) if has('persistent_undo') set undofile " keepan undo file (undo changes after closing) endif endif