Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.11 KB | None | 0 0
  1. # PATH
  2.  
  3. set -gx GOPATH $HOME/Coding/go
  4. set -gx PATH $HOME/Coding/go/bin $PATH
  5. set -gx PATH $HOME/.gem/ruby/*/bin $PATH
  6. set -gx PATH $HOME/.local/bin $PATH
  7. set -gx PATH $HOME/.local/share/npm/bin $PATH
  8.  
  9. # XDG
  10.  
  11. ## _HOMEs
  12. set -x XDG_CONFIG_HOME $HOME/.config
  13. set -x XDG_CACHE_HOME $HOME/.cache
  14. set -x XDG_CURRENT_DESKTOP_HOME GNOME
  15. set -x XDG_DATA_HOME $HOME/.local/share
  16.  
  17. ## NPM
  18.  
  19. set -x NPM_CONFIG_USERCONFIG $XDG_CONFIG_HOME/npm/npmrc
  20.  
  21. # ~Aesthetic~
  22.  
  23. ## Firefox/Thunderbird Wayland
  24.  
  25. #set -x MOZ_ENABLE_WAYLAND 1
  26. set -e MOZ_ENABLE_WAYLAND
  27.  
  28. ## Base16
  29.  
  30. set -x base16colorspace 256
  31. set -x NVIM_TUI_ENABLE_TRUE_COLOR 1
  32.  
  33. if status --is-interactive
  34. set BASE16_SHELL "$HOME/.config/base16-shell/"
  35. source "$BASE16_SHELL/profile_helper.fish"
  36. end
  37.  
  38. ## Fish
  39.  
  40. set -U fish_greeting
  41. set -U fish_prompt_pwd_dir_length 0
  42.  
  43. ### PS1
  44.  
  45. function fish_prompt
  46. # should be "['(whoami)'@'(hostname) '($PWD)']$ "
  47. set_color normal
  48. echo -n '['; set_color -o cyan; echo -n (whoami); set_color normal; \
  49. echo -n '@'; set_color -o blue; echo -n (hostname); set_color -o green; \
  50. echo -n ' '(prompt_pwd); set_color normal; echo -n ']$ '
  51. end
  52.  
  53. ## aliases
  54. alias vim nvim
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement