config

OpenBSD system configuration
git clone git://jacobedwards.org/config
Log | Files | Refs | README

commit 90aebc47263b038b9bc95c868268ce110532541a
parent b77959b68f6d1c115626e691e88d7e0b59c295ad
Author: jacob <jacobdoeslinux@protonmail.com>
Date:   Mon, 11 Nov 2019 19:23:31 -0800

total revamp removed omyzsh

Diffstat:
Mzsh/.zshrc | 49++++++++++++++++++++++++++++---------------------
1 file changed, 28 insertions(+), 21 deletions(-)

diff --git a/zsh/.zshrc b/zsh/.zshrc @@ -1,39 +1,47 @@ -#TERM=xterm-kitty -# If you come from bash you might have to change your $PATH. +source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh export PATH=$HOME/bin:$HOME/.xmobar/scripts/:$PATH -ZSH=/usr/share/oh-my-zsh/ -ZSH_THEME="af-magic" -#ZSH_THEME="refined" -#ZSH_THEME="agnoster" - - -# CASE_SENSITIVE="true" -# HYPHEN_INSENSITIVE="true" +CASE_SENSITIVE="false" +HYPHEN_INSENSITIVE="true" DISABLE_AUTO_UPDATE="true" DISABLE_UPDATE_PROMPT="false" -# 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. +# Misc DISABLE_AUTO_TITLE="true" -# Uncomment the following line to enable command auto-correction. -# ENABLE_CORRECTION="true" -COMPLETION_WAITING_DOTS="true" + +# Functions +example() { +printf "this is an example\n" + +} + + +zstyle ':completion:*:*:xdvi:*' menu yes select +zstyle ':completion:*:*:xdvi:*' file-sort time + + +# History + + + + + + +# primary prompt +PROMPT='tim' +RPROMPT2='user@host' + -plugins=(git) +# Finishing up [[ -f ~/.shell-alias ]] && . ~/.shell-alias if [[ -n $SSH_CONNECTION ]]; then @@ -42,4 +50,3 @@ else export EDITOR='vim' fi -source $ZSH/oh-my-zsh.sh