Skip to content

Instantly share code, notes, and snippets.

@josephok
Last active May 10, 2016 10:26
Show Gist options
  • Save josephok/2db2631046bb666ce7902dc832bf72d0 to your computer and use it in GitHub Desktop.
Save josephok/2db2631046bb666ce7902dc832bf72d0 to your computer and use it in GitHub Desktop.
my vim config
set nocompatible " required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'
Plugin 'Valloric/YouCompleteMe'
Plugin 'scrooloose/syntastic'
Plugin 'nvie/vim-flake8'
Plugin 'jnurmine/Zenburn'
Plugin 'altercation/vim-colors-solarized'
Plugin 'scrooloose/nerdtree'
Plugin 'jistr/vim-nerdtree-tabs'
Plugin 'tpope/vim-fugitive'
Plugin 'tomasr/molokai'
" Add all your plugins here (note older versions of Vundle used Bundle instead of Plugin)
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
"au BufNewFile,BufRead *.py
set tabstop=4
set softtabstop=4
set shiftwidth=4
set textwidth=79
set expandtab
set autoindent
set fileformat=unix
set encoding=utf-8
let python_highlight_all=1
syntax on
let NERDTreeIgnore=['\.pyc$', '\~$'] "ignore files in NERDTree
set nu
set clipboard=unnamed
let g:molokai_original = 1
set background=dark
set t_Co=256
colorscheme solarized
" colorscheme molokai
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment