Skip to content

Instantly share code, notes, and snippets.

@maverickames
Last active December 26, 2015 06:09
Show Gist options
  • Save maverickames/7106082 to your computer and use it in GitHub Desktop.
Save maverickames/7106082 to your computer and use it in GitHub Desktop.
vimrc
set smartindent
set tabstop=4
set shiftwidth=2
set expandtab
set nocompatible
set ignorecase
set smartcase
set incsearch
set wrapscan
set nu
set laststatus=2
"Vundle stuff
set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
set rtp+=~/.vim/bundle/vim-go.vim
set rtp+=~/.vim/bundle/airline-vim.vim
call vundle#begin()
Plugin 'gmarik/Vundle.vim'
Plugin 'fatih/vim-go'
Plugin 'bling/vim-airline'
Plugin 'Valloric/YouCompleteMe'
Plugin 'jistr/vim-nerdtree-tabs'
Plugin 'scrooloose/nerdtree'
Plugin 'flazz/vim-colorschemes'
Plugin 'Raimondi/delimitMate'
Plugin 'kien/ctrlp.vim'
Plugin 'tacahiroy/ctrlp-funky'
call vundle#end()
"syntax and ident stuff
filetype plugin indent on
syntax on
colorscheme Tomorrow-Night-Eighties
highlight LineNr ctermfg=grey
map <C-n> :NERDTreeTabsToggle<CR>
" NERDTree config
let NERDTreeChDirMode=2
let NERDTreeHightlightCursorline=1
set listchars=eol:↵,trail:·,precedes:«,extends:»,tab:▸\
map <F5> :GoRun <cr>
map <F6> :GoBuild <cr>
map <c-l> :set list!<cr>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment