# If you come from bash you might have to change your $PATH. # export PATH=$HOME/bin:/usr/local/bin:$PATH # Path to your oh-my-zsh installation. export ZSH="/home/solomon/.oh-my-zsh" # Set name of the theme to load --- if set to "random", it will # load a random theme each time oh-my-zsh is loaded, in which case, # to know which specific one was loaded, run: echo $RANDOM_THEME # See https://github.com/ohmyzsh/ohmyzsh/wiki/Themes #ZSH_THEME="microtech" #ZSH_THEME="gnzh" #ZSH_THEME="pmcgee" ZSH_THEME="inkletblotsh" # Set list of themes to pick from when loading at random # Setting this variable when ZSH_THEME=random will cause zsh to load # a theme from this variable instead of looking in $ZSH/themes/ # If set to an empty array, this variable will have no effect. # ZSH_THEME_RANDOM_CANDIDATES=( "robbyrussell" "agnoster" ) # Uncomment the following line to use case-sensitive completion. # CASE_SENSITIVE="true" # 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 disable bi-weekly auto-update checks. # DISABLE_AUTO_UPDATE="true" # Uncomment the following line to automatically update without prompting. # DISABLE_UPDATE_PROMPT="true" # Uncomment the following line to change how often to auto-update (in days). # export UPDATE_ZSH_DAYS=13 # Uncomment the following line if pasting URLs and other text is messed up. # DISABLE_MAGIC_FUNCTIONS="true" # Uncomment the following line to disable colors in ls. # DISABLE_LS_COLORS="true" # Uncomment the following line to disable auto-setting terminal title. # DISABLE_AUTO_TITLE="true" # Uncomment the following line to enable command auto-correction. ENABLE_CORRECTION="true" # Uncomment the following line to display red dots whilst waiting for completion. # Caution: this setting can cause issues with multiline prompts (zsh 5.7.1 and newer seem to work) # See https://github.com/ohmyzsh/ohmyzsh/issues/5765 # 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. # You can set one of the optional three formats: # "mm/dd/yyyy"|"dd.mm.yyyy"|"yyyy-mm-dd" # or set a custom format using the strftime function format specifications, # see 'man strftime' for details. HIST_STAMPS="yyyy-mm-dd" # Would you like to use another custom folder than $ZSH/custom? ZSH_CUSTOM=/home/solomon/.config/zsh # Which plugins would you like to load? # Standard plugins can be found in $ZSH/plugins/ # Custom plugins may be added to $ZSH_CUSTOM/plugins/ # Example format: plugins=(rails git textmate ruby lighthouse) # Add wisely, as too many plugins slow down shell startup. plugins=(git battery git-flow git-prompt) source $ZSH/oh-my-zsh.sh # User configuration # export MANPATH="/usr/local/man:$MANPATH" # You may need to manually set your language environment export LANG=en_US.UTF-8 # Preferred editor for local and remote sessions if [[ -n $SSH_CONNECTION ]]; then export EDITOR='nano' else export EDITOR='micro' fi # Compilation flags # export ARCHFLAGS="-arch x86_64" # 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" alias config='/usr/bin/git --git-dir=$HOME/.cfg/ --work-tree=$HOME' alias logout='/usr/bin/kill -9 -1' alias ipaddr='curl api.ipify.org' alias sms='nohup kdeconnect-sms &' alias ls='ls -la --color=auto' path+=('$HOME/.local/bin') path+=('/home/solomon/.local/bin') # Dracula Theme (for zsh-syntax-highlighting) # # https://github.com/zenorocha/dracula-theme # # Copyright 2021, All rights reserved # # Code licensed under the MIT license # http://zenorocha.mit-license.org # # @author George Pickering <@bigpick> # @author Zeno Rocha # Paste this files contents inside your ~/.zshrc before you activate zsh-syntax-highlighting ZSH_HIGHLIGHT_HIGHLIGHTERS=(main cursor) typeset -gA ZSH_HIGHLIGHT_STYLES # Default groupings per, https://spec.draculatheme.com, try to logically separate # possible ZSH_HIGHLIGHT_STYLES settings accordingly...? # # Italics not yet supported by zsh; potentially soon: # https://github.com/zsh-users/zsh-syntax-highlighting/issues/432 # https://www.zsh.org/mla/workers/2021/msg00678.html # ... in hopes that they will, labelling accordingly with ,italic where appropriate # # Main highlighter styling: https://github.com/zsh-users/zsh-syntax-highlighting/blob/master/docs/highlighters/main.md # ## General ### Diffs ### Markup ## Classes ## Comments ZSH_HIGHLIGHT_STYLES[comment]='fg=#6272A4' ## Constants ## Entitites ## Functions/methods ZSH_HIGHLIGHT_STYLES[alias]='fg=#50FA7B' ZSH_HIGHLIGHT_STYLES[suffix-alias]='fg=#50FA7B' ZSH_HIGHLIGHT_STYLES[global-alias]='fg=#50FA7B' ZSH_HIGHLIGHT_STYLES[function]='fg=#50FA7B' ZSH_HIGHLIGHT_STYLES[command]='fg=#50FA7B' ZSH_HIGHLIGHT_STYLES[precommand]='fg=#50FA7B,italic' ZSH_HIGHLIGHT_STYLES[autodirectory]='fg=#FFB86C,italic' ZSH_HIGHLIGHT_STYLES[single-hyphen-option]='fg=#FFB86C' ZSH_HIGHLIGHT_STYLES[double-hyphen-option]='fg=#FFB86C' ZSH_HIGHLIGHT_STYLES[back-quoted-argument]='fg=#BD93F9' ## Keywords ## Built ins ZSH_HIGHLIGHT_STYLES[builtin]='fg=#8BE9FD' ZSH_HIGHLIGHT_STYLES[reserved-word]='fg=#8BE9FD' ZSH_HIGHLIGHT_STYLES[hashed-command]='fg=#8BE9FD' ## Punctuation ZSH_HIGHLIGHT_STYLES[commandseparator]='fg=#FF79C6' ZSH_HIGHLIGHT_STYLES[command-substitution-delimiter]='fg=#F8F8F2' ZSH_HIGHLIGHT_STYLES[command-substitution-delimiter-unquoted]='fg=#F8F8F2' ZSH_HIGHLIGHT_STYLES[process-substitution-delimiter]='fg=#F8F8F2' ZSH_HIGHLIGHT_STYLES[back-quoted-argument-delimiter]='fg=#FF79C6' ZSH_HIGHLIGHT_STYLES[back-double-quoted-argument]='fg=#FF79C6' ZSH_HIGHLIGHT_STYLES[back-dollar-quoted-argument]='fg=#FF79C6' ## Serializable / Configuration Languages ## Storage ## Strings ZSH_HIGHLIGHT_STYLES[command-substitution-quoted]='fg=#F1FA8C' ZSH_HIGHLIGHT_STYLES[command-substitution-delimiter-quoted]='fg=#F1FA8C' ZSH_HIGHLIGHT_STYLES[single-quoted-argument]='fg=#F1FA8C' ZSH_HIGHLIGHT_STYLES[single-quoted-argument-unclosed]='fg=#FF5555' ZSH_HIGHLIGHT_STYLES[double-quoted-argument]='fg=#F1FA8C' ZSH_HIGHLIGHT_STYLES[double-quoted-argument-unclosed]='fg=#FF5555' ZSH_HIGHLIGHT_STYLES[rc-quote]='fg=#F1FA8C' ## Variables ZSH_HIGHLIGHT_STYLES[dollar-quoted-argument]='fg=#F8F8F2' ZSH_HIGHLIGHT_STYLES[dollar-quoted-argument-unclosed]='fg=#FF5555' ZSH_HIGHLIGHT_STYLES[dollar-double-quoted-argument]='fg=#F8F8F2' ZSH_HIGHLIGHT_STYLES[assign]='fg=#F8F8F2' ZSH_HIGHLIGHT_STYLES[named-fd]='fg=#F8F8F2' ZSH_HIGHLIGHT_STYLES[numeric-fd]='fg=#F8F8F2' ## No category relevant in spec ZSH_HIGHLIGHT_STYLES[unknown-token]='fg=#FF5555' ZSH_HIGHLIGHT_STYLES[path]='fg=#F8F8F2' ZSH_HIGHLIGHT_STYLES[path_pathseparator]='fg=#FF79C6' ZSH_HIGHLIGHT_STYLES[path_prefix]='fg=#F8F8F2' ZSH_HIGHLIGHT_STYLES[path_prefix_pathseparator]='fg=#FF79C6' ZSH_HIGHLIGHT_STYLES[globbing]='fg=#F8F8F2' ZSH_HIGHLIGHT_STYLES[history-expansion]='fg=#BD93F9' #ZSH_HIGHLIGHT_STYLES[command-substitution]='fg=?' #ZSH_HIGHLIGHT_STYLES[command-substitution-unquoted]='fg=?' #ZSH_HIGHLIGHT_STYLES[process-substitution]='fg=?' #ZSH_HIGHLIGHT_STYLES[arithmetic-expansion]='fg=?' ZSH_HIGHLIGHT_STYLES[back-quoted-argument-unclosed]='fg=#FF5555' ZSH_HIGHLIGHT_STYLES[redirection]='fg=#F8F8F2' ZSH_HIGHLIGHT_STYLES[arg0]='fg=#F8F8F2' ZSH_HIGHLIGHT_STYLES[default]='fg=#F8F8F2' ZSH_HIGHLIGHT_STYLES[cursor]='standout' source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh