summaryrefslogtreecommitdiffstats
path: root/.zshrc
diff options
context:
space:
mode:
authorYigit Sever2019-04-04 15:17:18 +0300
committerYigit Sever2019-04-04 15:17:18 +0300
commitb719cdacf4ca8c45e3e13d4ba89eb2d347876bad (patch)
tree1df88b6aa409cd31b8d570c65684292795342ed0 /.zshrc
parentde99b25185ee2f2d65a8254f1a6bd64484e682b0 (diff)
downloaddotfiles-b719cdacf4ca8c45e3e13d4ba89eb2d347876bad.tar.gz
dotfiles-b719cdacf4ca8c45e3e13d4ba89eb2d347876bad.tar.bz2
dotfiles-b719cdacf4ca8c45e3e13d4ba89eb2d347876bad.zip
Introduce single file alternation scheme
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc8
1 files changed, 6 insertions, 2 deletions
diff --git a/.zshrc b/.zshrc
index 79c9dee..667742c 100644
--- a/.zshrc
+++ b/.zshrc
@@ -1,4 +1,6 @@
1cowsay $(fortune) 1cowsay $(fortune)
2hostname=$(uname -n)
3
2# If you come from bash you might have to change your $PATH. 4# If you come from bash you might have to change your $PATH.
3export PATH=$HOME/bin:/usr/local/bin:$PATH 5export PATH=$HOME/bin:/usr/local/bin:$PATH
4export PATH="$PATH:/home/yigit/.local/bin" 6export PATH="$PATH:/home/yigit/.local/bin"
@@ -137,8 +139,10 @@ RANGER_LOAD_DEFAULT_RC=FALSE; export RANGER_LOAD_DEFAULT_RC
137 139
138export GPG_TTY=$(tty) 140export GPG_TTY=$(tty)
139 141
140PATH="$PATH:$(ruby -e 'print Gem.user_dir')/bin" 142if [ "$hostname" != "Luchs" ]; then
141export GEM_HOME=$HOME/.gem 143 PATH="$PATH:$(ruby -e 'print Gem.user_dir')/bin"
144 export GEM_HOME=$HOME/.gem
145fi
142 146
143# Getting Things Done & Taskwarrior Related 147# Getting Things Done & Taskwarrior Related
144alias in='task add +in' # Alias for tasks with in tag (in tray) 148alias in='task add +in' # Alias for tasks with in tag (in tray)