Skip to content

Instantly share code, notes, and snippets.

/.vimrc Secret

Created February 20, 2016 18:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/a393db2a2ff6b23b82e1 to your computer and use it in GitHub Desktop.
Save anonymous/a393db2a2ff6b23b82e1 to your computer and use it in GitHub Desktop.
" 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