Skip to content

Instantly share code, notes, and snippets.

@Schwitzd
Created July 13, 2024 07:55
Show Gist options
  • Select an option

  • Save Schwitzd/e545669bfaecfea92d2879969b02b69f to your computer and use it in GitHub Desktop.

Select an option

Save Schwitzd/e545669bfaecfea92d2879969b02b69f to your computer and use it in GitHub Desktop.
# Exports
export ZSH=/usr/share/oh-my-zsh
export ZSH_THEME=""
export ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE='fg=60'
export EDITOR="vim"
export VAULT_ADDR=http://127.0.0.1:8200
# Man pages in Monokai-style
export LESS_TERMCAP_mb=$'\e[1;35m'
export LESS_TERMCAP_md=$'\e[1;33m'
export LESS_TERMCAP_so=$'\e[01;44;37m'
export LESS_TERMCAP_us=$'\e[1;32m'
export LESS_TERMCAP_me=$'\e[0m'
export LESS_TERMCAP_se=$'\e[0m'
export LESS_TERMCAP_ue=$'\e[0m'
export GROFF_NO_SGR=1
# History in cache directory:
HISTSIZE=10000
SAVEHIST=10000
autoload -U promptinit; promptinit
# Plugins
plugins=(
sudo
git
docker
docker-compose
vscode
)
# Style
zstyle :prompt:pure:git:stash show yes
# vi mode
bindkey -v
export KEYTIMEOUT=1
# ZSH plugins
source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh
source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
source $ZSH/oh-my-zsh.sh
prompt pure
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment