about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBen Harris <ben@tilde.team>2018-07-31 23:47:54 -0400
committerBen Harris <ben@tilde.team>2018-07-31 23:47:54 -0400
commitf7a2b71869030476e0bcce7bed69a2e993c64c5d (patch)
treebfa517b95fa7276c2a78a419d7683ed7cbb46057
parent6775213b3360540d55e43ee76cf027320cc9baf9 (diff)
add ~/.local/bin to PATH
-rw-r--r--Makefile2
-rwxr-xr-xfish/.config/fish/config.fish2
2 files changed, 3 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6ccc5d3..0313dfe 100644
--- a/Makefile
+++ b/Makefile
@@ -62,6 +62,8 @@ weechat:
 
 gnupg:
 	@printf "$(YELLOW)--- gnupg ----------------------------------------------\n$(RESET)"
+	mkdir -p "$$HOME/.gnupg"
+	chmod 700 "$$HOME/.gnupg"
 	stow -t "$$HOME" gnupg
 
 .PHONY: bash fish git vim mutt byobu weechat gnupg clean install Windows Linux Other
diff --git a/fish/.config/fish/config.fish b/fish/.config/fish/config.fish
index bced7c8..da9363c 100755
--- a/fish/.config/fish/config.fish
+++ b/fish/.config/fish/config.fish
@@ -10,7 +10,7 @@ set -x MAIL /home/ben/Maildir
 
 set -x GOPATH (/usr/local/go/bin/go env GOPATH)
 
-set -x fish_user_paths $fish_user_paths ~/bin /usr/local/go/bin /home/ben/.yarn/bin $GOPATH/bin
+set -x fish_user_paths $fish_user_paths ~/bin /usr/local/go/bin /home/ben/.yarn/bin $GOPATH/bin ~/.local/bin
 
 set -x SSH_AGENT_PID ""
 set -x SSH_AUTH_SOCK (gpgconf --list-dirs agent-ssh-socket)