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

4
zshrc

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

Loading…
Cancel
Save