dotfiles

dotfile of sort
git clone git://git.nirm.al/dotfiles
Log | Files | Refs | README | LICENSE

.profile (323B)


      1 export EDITOR=vim
      2 export LANG=en_US.UTF-8
      3 
      4 export GOPATH=~/.local/share/go
      5 export GOPROXY=direct
      6 export GOSUMDB=off
      7 export GOTELEMETRY=off
      8 export GOTOOLCHAIN=local
      9 
     10 # set vim terminal to 256 colors.
     11 if [ -e /usr/share/terminfo/x/xterm-256color ]; then
     12     export TERM='xterm-256color'
     13 else
     14     export TERM='xterm-color'
     15 fi