Created
March 18, 2017 04:04
-
-
Save atez/e4a3ab9b956f03f3ff3737d5ac3465a1 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set number | |
set nocompatible " be iMproved | |
filetype off " required! | |
set rtp+=~/.vim/bundle/vundle/ | |
call vundle#rc() | |
" let Vundle manage Vundle | |
Bundle 'gmarik/vundle' | |
"my Bundle here: | |
" | |
" original repos on github | |
Bundle 'bling/vim-airline' | |
".................................. | |
" vim-scripts repos | |
".................................. | |
" non github repos | |
" Bundle 'git://git.wincent.com/command-t.git' | |
"...................................... | |
filetype plugin indent on | |
set nocompatible " 关闭 vi 兼容模式 | |
syntax on " 自动语法高亮 | |
set background=dark | |
colorscheme solarized " 设定配色方案 | |
set cursorline " 突出显示当前行 | |
set laststatus=2 | |
set noshowmode | |
set t_Co=256 | |
let g:Powerline_symbols = 'fancy' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment