config.fish 822 B

123456789101112131415161718192021222324
  1. set fish_greeting "Capella"
  2. if status is-login; and test (tty) = /dev/tty1
  3. exec sway
  4. end
  5. # Wayland native apps
  6. set -gx MOZ_ENABLE_WAYLAND 1
  7. export PATH="/usr/local/bin:/bin:/usr/sbin:/sbin:/usr/bin/"
  8. export PATH="$PATH:$HOME/.node/bin"
  9. export PATH="$PATH:$HOME/go/bin"
  10. alias pb='curl -s --data-binary @- https://p.capella.pro/ | awk \'{ print "https://p.capella.pro/"$0; }\' | tee /tmp/pb | pbcopy && cat /tmp/pb'
  11. alias syncdots='curl https://git.capella.pro/capella/dotfiles/raw/master/start | bash -s -- sync'
  12. # The next line updates PATH for the Google Cloud SDK.
  13. if [ -f '/home/capella/.gcloud/google-cloud-sdk/path.fish.inc' ]; . '/home/capella/.gcloud/google-cloud-sdk/path.fish.inc'; end
  14. # npm global packages
  15. set -gx PATH /home/capella/.npm-global/bin $PATH
  16. set -gx PATH /home/capella/.local/bin $PATH