diff options
author | Karel Kočí <cynerd@email.cz> | 2016-09-06 23:38:52 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2016-09-06 23:38:52 +0200 |
commit | 75ec3134cd00d41afdb3b01c839295f8cefbd14c (patch) | |
tree | b09f0476409f362c70aa61125784f8b56e142675 /shellrc | |
parent | afae51a1213caa58164389015469dba5381a1a80 (diff) | |
download | myconfigs-75ec3134cd00d41afdb3b01c839295f8cefbd14c.tar.gz myconfigs-75ec3134cd00d41afdb3b01c839295f8cefbd14c.tar.bz2 myconfigs-75ec3134cd00d41afdb3b01c839295f8cefbd14c.zip |
Fix paths
No relative path allowed. How this happend? Should been relative to
home directory.
Diffstat (limited to 'shellrc')
-rw-r--r-- | shellrc | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,7 +1,7 @@ # vim: ft=sh: # This is file with aliases and variables shared between bash and zsh -export PATH=.local/bin:$PATH:$(ruby -e "print Gem.user_dir")/bin +export PATH=~/.local/bin:$PATH:$(ruby -e "print Gem.user_dir")/bin export EDITOR=vim alias ls='ls --color=auto' |