Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- export TERM="xterm-256color"
- DEFAULT_USER=$USER
- export ZSH=~/.oh-my-zsh
- ZSH_THEME="robbyrussell"
- POWERLEVEL9K_VCS_GIT_ICON='\uf113'
- POWERLEVEL9K_LEFT_SEGMENT_SEPARATOR="\uE0C6"
- POWERLEVEL9K_RIGHT_SEGMENT_SEPARATOR="\uE0C6"
- POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(context dir newline vcs)
- POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(status background_jobs)
- POWERLEVEL9K_MODE='nerdfont-complete'
- # Uncomment the following line to use hyphen-insensitive completion. Case
- # sensitive completion must be off. _ and - will be interchangeable.
- HYPHEN_INSENSITIVE="true"
- # Uncomment the following line to change how often to auto-update (in days).
- export UPDATE_ZSH_DAYS=13
- # Uncomment the following line to display red dots whilst waiting for completion.
- COMPLETION_WAITING_DOTS="true"
- # Uncomment the following line if you want to disable marking untracked files
- # under VCS as dirty. This makes repository status check for large repositories
- # much, much faster.
- # DISABLE_UNTRACKED_FILES_DIRTY="true"
- # Uncomment the following line if you want to change the command execution time
- # stamp shown in the history command output.
- # The optional three formats: "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd"
- HIST_STAMPS="dd/mm/yyyy"
- # Would you like to use another custom folder than $ZSH/custom?
- # ZSH_CUSTOM=/path/to/new-custom-folder
- plugins=(bgnotify git sudo colored-man-pages)
- # export MANPATH="/usr/local/man:$MANPATH"
- source $ZSH/oh-my-zsh.sh
- # You may need to manually set your language environment
- # export LANG=en_US.UTF-8
- # Set personal aliases, overriding those provided by oh-my-zsh libs,
- # plugins, and themes. Aliases can be placed here, though oh-my-zsh
- # users are encouraged to define aliases within the ZSH_CUSTOM folder.
- # For a full list of active aliases, run `alias`.
- #
- # Example aliases
- # alias zshconfig="mate ~/.zshrc"
- # alias ohmyzsh="mate ~/.oh-my-zsh"
- # setopt completealiases
- #automatic rehash
- zstyle ':completion:*' rehash true
- # preventing duplicate lines in the history
- setopt HIST_IGNORE_DUPS
- #Loading custom aliases
- [ -f ~/.zsh_aliases ] && source ~/.zsh_aliases
- tabs 4
- export EDITOR=nano
- export NVM_DIR="$HOME/.nvm"
- export PATH=$PATH:~/.bin
- [ -s "$NVM_DIR/nvm.sh" ] && source "$NVM_DIR/nvm.sh" --no-use
- [ -s "$NVM_DIR/bash_completion" ] && source "$NVM_DIR/bash_completion"
- export ERL_AFLAGS="-kernel shell_history enabled -kernel shell_history_file_bytes 1024000"
- export QT_MAC_WANTS_LAYER=1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement