aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Burwell <ben@benburwell.com>2020-03-03 18:11:11 -0500
committerBen Burwell <ben@benburwell.com>2020-03-03 18:11:11 -0500
commita28e5b52a8c91d572bb095f45ccc99d561cacd09 (patch)
treed2633fb4d442d55cd0e780fdcfb0779a056c71a7
parentc81dab0e9aa86599cf8c8ead50a0956d25e39749 (diff)
zsh: add snap to path on linux
-rw-r--r--templates/.zsh/path.zsh3
1 files changed, 3 insertions, 0 deletions
diff --git a/templates/.zsh/path.zsh b/templates/.zsh/path.zsh
index d9b60cb..2e3c543 100644
--- a/templates/.zsh/path.zsh
+++ b/templates/.zsh/path.zsh
@@ -16,3 +16,6 @@ export PATH=$PATH:~/.bin
export PATH=$PATH:/usr/local/go/bin
export PATH=$PATH:~/.rvm/bin
export PATH=$PATH:~/.vim/bundle/fzf/bin
+{{ if eq .OS "linux" }}
+export PATH=$PATH:/snap/bin
+{{ end }}