-
-
Save anonymous/a393db2a2ff6b23b82e1 to your computer and use it in GitHub Desktop.
This file contains 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
" VUNDLE | |
set nocompatible " be iMproved | |
filetype off | |
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'davidhalter/jedi-vim' | |
Plugin 'scrooloose/nerdtree' | |
Plugin 'szw/vim-tags.git' | |
Plugin 'bling/vim-airline' | |
Plugin 'plasticboy/vim-markdown.git' | |
Plugin 'rstacruz/sparkup' | |
Plugin 'Raimondi/delimitMate' | |
Plugin 'Shougo/neocomplcache.vim' | |
Plugin 'tomtom/tcomment_vim' | |
Plugin 'tpope/vim-fugitive' | |
Plugin 'majutsushi/tagbar' | |
Plugin 'scrooloose/syntastic' | |
Plugin 'fatih/vim-go' | |
call vundle#end() | |
filetype plugin indent on | |
" NERDTree | |
let NERDTreeIgnore=['\.pyc$'] | |
map <C-n> :NERDTreeToggle<CR> | |
" Go | |
let g:tagbar_type_go = { | |
\ 'ctagstype': 'go', | |
\ 'kinds' : [ | |
\'p:package', | |
\'f:function', | |
\'v:variables', | |
\'t:type', | |
\'c:const' | |
\] | |
\} | |
set laststatus=2 | |
set encoding=utf-8 | |
if has("syntax") | |
syntax on | |
endif | |
set smartcase | |
set autowrite | |
set tabstop=4 | |
set shiftwidth=4 | |
set softtabstop=4 | |
set number | |
let g:neocomplete#enable_at_startup = 1 | |
colorscheme Tomorrow-Night | |
set t_Co=256 | |
noswapfile | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment