Skip to content

Instantly share code, notes, and snippets.

@clee
Created April 13, 2017 16:45
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 clee/fb1f5a599a6e51a5b9919f2229b80170 to your computer and use it in GitHub Desktop.
Save clee/fb1f5a599a6e51a5b9919f2229b80170 to your computer and use it in GitHub Desktop.
vim configuration
" install with:
" mkdir -p ~/.vim/autoload ~/.vim/bundle && \
" curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
" `git clone` plugins into ~/.vim/bundle/
call pathogen#infect()
syntax on
set encoding=utf8
set noexpandtab tabstop=4 shiftwidth=4 smartindent
" HIGHLIGHT ALL THE THINGS
let g:go_highlight_functions = 1
let g:go_highlight_methods = 1
let g:go_highlight_fields = 1
let g:go_highlight_types = 1
let g:go_highlight_operators = 1
let g:go_highlight_build_constraints = 1
" this is for Command-T, you can delete/ignore it if you don't use it
let mapleader = ','
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment