Skip to content

Instantly share code, notes, and snippets.

@kevindayton
Created January 27, 2017 14:45
Show Gist options
  • Save kevindayton/9b741a064b90916a897442b66fcd4ed3 to your computer and use it in GitHub Desktop.
Save kevindayton/9b741a064b90916a897442b66fcd4ed3 to your computer and use it in GitHub Desktop.
source ~/Library/Python/2.7/lib/python/site-packages/powerline/bindings/vim/plugin/powerline.vim
set laststatus=2
set cursorline
execute pathogen#infect()
let g:airline#extensions#tabline#enabled = 1
let g:airline_powerline_fonts = 1
let g:solarized_base16 = 1
syntax enable
set background=dark
" solarized options
"let g:solarized_visibility = "high"
"let g:solarized_contrast = "high"
"let g:solarized_termcolors= 256
set term=xterm-256color
set termencoding=utf-8
colorscheme solarized
set backspace=indent,eol,start
set mouse=a
set number
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'ryanoasis/vim-devicons'
Plugin 'scrooloose/nerdcommenter'
Plugin 'ctrlp.vim'
call vundle#end()
let g:Powerline_symbols = 'fancy'
map <C-n> :NERDTreeToggle<CR>
autocmd vimenter * NERDTree
" Tabs and spaces
set tabstop=2
set softtabstop=2
set expandtab
" vim:fdm=marker
set clipboard=unnamed
set mouse=a
set foldcolumn=3
set foldmethod=syntax
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment