Advertisement
Guest User

Untitled

a guest
Dec 26th, 2020
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 2.44 KB | None | 0 0
  1. export TERM="xterm-256color"
  2. DEFAULT_USER=$USER
  3.  
  4. export ZSH=~/.oh-my-zsh
  5.  
  6. ZSH_THEME="robbyrussell"
  7. POWERLEVEL9K_VCS_GIT_ICON='\uf113'
  8. POWERLEVEL9K_LEFT_SEGMENT_SEPARATOR="\uE0C6"
  9. POWERLEVEL9K_RIGHT_SEGMENT_SEPARATOR="\uE0C6"
  10. POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir newline vcs)
  11. POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status background_jobs)
  12. POWERLEVEL9K_MODE='nerdfont-complete'
  13.  
  14. # Uncomment the following line to use hyphen-insensitive completion. Case
  15. # sensitive completion must be off. _ and - will be interchangeable.
  16.  HYPHEN_INSENSITIVE="true"
  17.  
  18. # Uncomment the following line to change how often to auto-update (in days).
  19.  export UPDATE_ZSH_DAYS=13
  20.  
  21. # Uncomment the following line to display red dots whilst waiting for completion.
  22.  COMPLETION_WAITING_DOTS="true"
  23.  
  24. # Uncomment the following line if you want to disable marking untracked files
  25. # under VCS as dirty. This makes repository status check for large repositories
  26. # much, much faster.
  27. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  28.  
  29. # Uncomment the following line if you want to change the command execution time
  30. # stamp shown in the history command output.
  31. # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
  32.  HIST_STAMPS="dd/mm/yyyy"
  33.  
  34. # Would you like to use another custom folder than $ZSH/custom?
  35. # ZSH_CUSTOM=/path/to/new-custom-folder
  36.  
  37. plugins=(bgnotify git sudo colored-man-pages)
  38.  
  39. # export MANPATH="/usr/local/man:$MANPATH"
  40.  
  41. source $ZSH/oh-my-zsh.sh
  42.  
  43. # You may need to manually set your language environment
  44. # export LANG=en_US.UTF-8
  45.  
  46. # Set personal aliases, overriding those provided by oh-my-zsh libs,
  47. # plugins, and themes. Aliases can be placed here, though oh-my-zsh
  48. # users are encouraged to define aliases within the ZSH_CUSTOM folder.
  49. # For a full list of active aliases, run `alias`.
  50. #
  51. # Example aliases
  52. # alias zshconfig="mate ~/.zshrc"
  53. # alias ohmyzsh="mate ~/.oh-my-zsh"
  54.  
  55. # setopt completealiases
  56.  
  57. #automatic rehash
  58. zstyle ':completion:*' rehash true
  59.  
  60. # preventing duplicate lines in the history
  61. setopt HIST_IGNORE_DUPS
  62.  
  63. #Loading custom aliases
  64. [ -f ~/.zsh_aliases ] && source ~/.zsh_aliases
  65.  
  66. tabs 4
  67. export EDITOR=nano
  68.  
  69. export NVM_DIR="$HOME/.nvm"
  70. export PATH=$PATH:~/.bin
  71.  
  72. [ -s "$NVM_DIR/nvm.sh" ] && source "$NVM_DIR/nvm.sh" --no-use
  73. [ -s "$NVM_DIR/bash_completion" ] && source "$NVM_DIR/bash_completion"
  74.  
  75. export ERL_AFLAGS="-kernel shell_history enabled -kernel shell_history_file_bytes 1024000"
  76. export QT_MAC_WANTS_LAYER=1
  77.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement