Created
July 23, 2014 04:25
-
-
Save kuanyingchou/ae2adbe58ef97b4cdc1c 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 nocompatible | |
set showcmd | |
filetype on | |
filetype plugin on | |
syntax enable | |
set autoindent | |
set expandtab | |
set smarttab | |
set tabstop=4 | |
set shiftwidth=4 | |
set softtabstop=4 | |
set number | |
inoremap jj <Esc> | |
set incsearch | |
set hlsearch | |
set ruler | |
set guifont=Monaco:h14 | |
" colorscheme BusyBee_modified | |
" colorscheme zenburn | |
" colorscheme hybrid-light | |
" colorscheme hybrid | |
" colorscheme seoul256-light | |
" colorscheme seoul256 | |
" colorscheme solarized | |
colorscheme codeschool | |
execute pathogen#infect() | |
" easymotion | |
let g:EasyMotion_leader_key = '<Leader>' | |
"" airline | |
" set laststatus=2 | |
" let g:airline_powerline_fonts = 1 | |
" set guifont=Inconsolata\ for\ Powerline:h16 | |
set list |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment