Created
July 26, 2015 19:12
-
-
Save sangheestyle/10caaf673947ad5b0f07 to your computer and use it in GitHub Desktop.
.vimrc
This file contains hidden or 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
execute pathogen#infect() | |
colorscheme molokai | |
syntax enable | |
filetype indent plugin on | |
set nocompatible | |
set backspace=indent,eol,start | |
set tabstop=4 | |
set shiftwidth=4 | |
set softtabstop=4 | |
set number | |
let g:neocomplete#enable_at_startup = 1 | |
set completeopt-=preview | |
let g:go_highlight_functions = 1 | |
let g:go_highlight_methods = 1 | |
let g:go_highlight_structs = 1 | |
let g:go_highlight_operators = 1 | |
let g:go_highlight_build_constraints = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment