Browse Source

Added Go-Mode to emacs. Added GOPATH and updated the PATH to allow for binaries in the GOPATH.

master
Drew Short 9 years ago
parent
commit
f7aa520bcd
  1. 2
      home/.emacs.d/init.el
  2. 4
      home/.zshrc

2
home/.emacs.d/init.el

@ -14,6 +14,8 @@
magit
markdown-mode
projectile
go-mode
rust-mode
yaml-mode)
"Default packages")

4
home/.zshrc

@ -35,6 +35,10 @@ if [ -d "$HOME/.linuxbrew" ]; then
export INFOPATH="$HOME/.linuxbrew/share/info:$INFOPATH"
fi
# Go Setup
export GOPATH="$HOME/go"
export PATH="$PATH:$HOME/go/bin"
if [ -f "$HOME/.update_dotfiles.sh" ]; then
/usr/bin/env sh $HOME/.update_dotfiles.sh
fi
Loading…
Cancel
Save