aboutsummaryrefslogtreecommitdiff
path: root/.config/fish/config.fish
diff options
context:
space:
mode:
authorVidhu Kant Sharma <vidhukant@protonmail.ch>2022-01-24 00:27:57 +0530
committerVidhu Kant Sharma <vidhukant@protonmail.ch>2022-01-24 00:27:57 +0530
commitab6ee7b92ecc105ceff1406d259fe5510eececf5 (patch)
treea25da0b1d24e550bf27281e1892789281badd704 /.config/fish/config.fish
parentf33bdbbc18e031e5e9881d14fc306b709aef3572 (diff)
made the path variables use $HOME not /home/zt
Diffstat (limited to '.config/fish/config.fish')
-rw-r--r--.config/fish/config.fish17
1 files changed, 10 insertions, 7 deletions
diff --git a/.config/fish/config.fish b/.config/fish/config.fish
index 09a2e1e..0ec137c 100644
--- a/.config/fish/config.fish
+++ b/.config/fish/config.fish
@@ -17,17 +17,17 @@ if status is-interactive
abbr --add --global x 'chmod +x'
# general PATH
- fish_add_path /home/zt/.scripts
- fish_add_path /home/zt/.local/bin
- fish_add_path /home/zt/.emacs.d/bin
+ fish_add_path $HOME/.scripts
+ fish_add_path $HOME/.local/bin
+ fish_add_path $HOME/.emacs.d/bin
fish_add_path /usr/local/bin
# PATH for different languages
- fish_add_path /home/zt/.gopath
- fish_add_path /home/zt/.local/flutter/bin
+ fish_add_path $HOME/.gopath
+ fish_add_path $HOME/.local/flutter/bin
- set -x RUST_SRC_PATH /home/zt/.cargo
- set -x GOPATH /home/zt/.gopath
+ set -x RUST_SRC_PATH $HOME/.cargo
+ set -x GOPATH $HOME/.gopath
set -x QT_QPA_PLATFORMTHEME "gtk2"
# default apps
@@ -38,4 +38,7 @@ if status is-interactive
set -x READER "librewolf"
set -x COLORTERM "truecolor"
set -x PAGER "bat"
+
+ # disable greeting
+ set fish_greeting
end