Browse Source

go updates

master
Matthew Faltys 9 years ago
parent
commit
625df0cc6f
  1. 14
      vimrc
  2. 4
      zshrc

14
vimrc

@ -10,6 +10,7 @@ call vundle#begin()
Plugin 'VundleVim/Vundle.vim'
Plugin 'scrooloose/nerdtree'
Plugin 'kien/ctrlp.vim'
Plugin 'fatih/vim-go'
call vundle#end()
filetype plugin indent on
@ -19,18 +20,27 @@ filetype plugin indent on
"------NORMAL CONFIGS------
colorscheme cottonmouse
"colorscheme jellybeans
"set mouse=a
command Mouse set mouse=a
syntax enable
au BufRead,BufNewFile *.hy set filetype=hy
"filetype plugin indent on
set number
"set cursorline
set cursorline
"set showmatch
" tabformatting...
"set listchars=tab:\|\
"set list
hi LineNr ctermbg=NONE
hi LineNr ctermfg=DarkGrey
"------/NORMAL CONFIGS-----
"------GO-VIM CONFIGS------
let g:go_fmt_fail_silently = 1
"let g:go_fmt_autosave = 0
"------/GO-VIM CONFIGS-----
"------COLOR CONFIGS------
hi LineNr ctermbg=NONE
hi LineNr ctermfg=DarkGrey

4
zshrc

@ -30,5 +30,7 @@ zstyle ':completion:*' verbose true
eval $( dircolors -b $HOME/LS_COLORS )
export LS_COLORS
export GOPATH=$HOME/go
PATH=$PATH:$GOPATH/bin
#gopath shiz
export GOPATH=/home/capa/dev/go.dev
export PATH=$GOPATH/bin

Loading…
Cancel
Save