diff options
author | Ben Burwell <ben@benburwell.com> | 2020-03-03 18:11:11 -0500 |
---|---|---|
committer | Ben Burwell <ben@benburwell.com> | 2020-03-03 18:11:11 -0500 |
commit | a28e5b52a8c91d572bb095f45ccc99d561cacd09 (patch) | |
tree | d2633fb4d442d55cd0e780fdcfb0779a056c71a7 | |
parent | c81dab0e9aa86599cf8c8ead50a0956d25e39749 (diff) |
zsh: add snap to path on linux
-rw-r--r-- | templates/.zsh/path.zsh | 3 |
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 }} |