Last active
August 28, 2015 20:46
-
-
Save brianfoshee/9e11a0636d57d49f9e57 to your computer and use it in GitHub Desktop.
Debugging issue with gofmt and editorconfig clashing on save
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
root = true | |
# Global rules | |
[*] | |
end_of_line = lf | |
insert_final_newline = true | |
trim_trailing_whitespace = true |
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
set rtp+=~/.vim/bundle/Vundle.vim | |
call vundle#begin() | |
Plugin 'gmarik/Vundle.vim' | |
Plugin 'fatih/vim-go' " the best | |
Plugin 'editorconfig/editorconfig-vim' " http://editorconfig.org/ | |
call vundle#end() " required | |
filetype plugin indent on " required | |
" Setup vim-go to automatically import paths | |
let g:go_fmt_command = "goimports" |
Author
brianfoshee
commented
Aug 28, 2015
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment