My configuration files for Debian/Ubuntu applications
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 
 

41 satır
1.2 KiB

  1. # ~/.profile: executed by the command interpreter for login shells.
  2. # This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
  3. # exists.
  4. # see /usr/share/doc/bash/examples/startup-files for examples.
  5. # the files are located in the bash-doc package.
  6. # the default umask is set in /etc/profile; for setting the umask
  7. # for ssh logins, install and configure the libpam-umask package.
  8. #umask 022
  9. # if running bash
  10. if [ -n "$BASH_VERSION" ]; then
  11. # include .bashrc if it exists
  12. if [ -f "$HOME/.bashrc" ]; then
  13. . "$HOME/.bashrc"
  14. fi
  15. fi
  16. # set PATH so it includes user's private bin if it exists
  17. if [ -d "$HOME/bin" ] ; then
  18. PATH="$HOME/bin:$PATH"
  19. fi
  20. # set PATH so it includes user's private bin if it exists
  21. if [ -d "$HOME/.local/bin" ] ; then
  22. PATH="$HOME/.local/bin:$PATH"
  23. fi
  24. export PATH="$HOME/.config/composer/vendor/bin:$HOME/go/bin:/usr/lib/go/bin:$PATH"
  25. export GOPATH="$HOME/go"
  26. export GO111MODULE=on
  27. export EDITOR='vim'
  28. export PAGER='less'
  29. export NNN_BMS='h:~/;c:~/.config;n:~/Notes;'
  30. export NNN_FIFO=/tmp/nnn.fifo
  31. export NNN_PLUG='p:preview-tui;c:x2sel;i:imgview;s:tmspawn'
  32. export USE_PISTOL=0
  33. export XDG_CONFIG_HOME=$HOME/.config
  34. export XDG_CACHE_HOME=$HOME/.cache
  35. export XDG_DATA_HOME=$HOME/.local/share