Skip to content

Instantly share code, notes, and snippets.

@atez
Created March 18, 2017 04:04
Show Gist options
  • Save atez/e4a3ab9b956f03f3ff3737d5ac3465a1 to your computer and use it in GitHub Desktop.
Save atez/e4a3ab9b956f03f3ff3737d5ac3465a1 to your computer and use it in GitHub Desktop.
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