Advertisement
Goodevil95

Bashrc

May 7th, 2019
469
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. #!/usr/bin/env bash
  2.  
  3. # If not running interactively, don't do anything
  4. case $- in
  5. *i*) ;;
  6. *) return;;
  7. esac
  8.  
  9. # Path to the bash it configuration
  10. export BASH_IT="/home/gena/.bash_it"
  11.  
  12. # Lock and Load a custom theme file.
  13. # Leave empty to disable theming.
  14. # location /.bash_it/themes/
  15. export BASH_IT_THEME='zork'
  16.  
  17. # (Advanced): Change this to the name of your remote repo if you
  18. # cloned bash-it with a remote other than origin such as `bash-it`.
  19. # export BASH_IT_REMOTE='bash-it'
  20.  
  21. # Your place for hosting Git repos. I use this for private repos.
  22. #export GIT_HOSTING='git@git.domain.com'
  23.  
  24. # Don't check mail when opening terminal.
  25. unset MAILCHECK
  26.  
  27. # Change this to your console based IRC client of choice.
  28. #export IRC_CLIENT='irssi'
  29.  
  30. # Set this to the command you use for todo.txt-cli
  31. #export TODO="t"
  32.  
  33. # Set this to false to turn off version control status checking within the prompt for all themes
  34. export SCM_CHECK=true
  35.  
  36. # Set Xterm/screen/Tmux title with only a short hostname.
  37. # Uncomment this (or set SHORT_HOSTNAME to something else),
  38. # Will otherwise fall back on $HOSTNAME.
  39. #export SHORT_HOSTNAME=$(hostname -s)
  40.  
  41. # Set Xterm/screen/Tmux title with only a short username.
  42. # Uncomment this (or set SHORT_USER to something else),
  43. # Will otherwise fall back on $USER.
  44. #export SHORT_USER=${USER:0:8}
  45.  
  46. # Set Xterm/screen/Tmux title with shortened command and directory.
  47. # Uncomment this to set.
  48. #export SHORT_TERM_LINE=true
  49.  
  50. # Set vcprompt executable path for scm advance info in prompt (demula theme)
  51. # https://github.com/djl/vcprompt
  52. #export VCPROMPT_EXECUTABLE=~/.vcprompt/bin/vcprompt
  53.  
  54. # (Advanced): Uncomment this to make Bash-it reload itself automatically
  55. # after enabling or disabling aliases, plugins, and completions.
  56. # export BASH_IT_AUTOMATIC_RELOAD_AFTER_CONFIG_CHANGE=1
  57.  
  58. # Uncomment this to make Bash-it create alias reload.
  59. # export BASH_IT_RELOAD_LEGACY=1
  60.  
  61. # Load Bash It
  62. source "$BASH_IT"/bash_it.sh
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement