From 2f3f91682f7b4a33f1791781bfa8eca4f7c9527a Mon Sep 17 00:00:00 2001 From: Jack Jamison Date: Wed, 13 May 2026 19:32:22 -0400 Subject: new system on gentoo --- archive/.zshrc | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 archive/.zshrc (limited to 'archive/.zshrc') diff --git a/archive/.zshrc b/archive/.zshrc new file mode 100644 index 0000000..c631096 --- /dev/null +++ b/archive/.zshrc @@ -0,0 +1,29 @@ +#!/bin/zsh + +# Completion +autoload -U compinit +compinit + +# History +export HISTSIZE=2000 +export HISTFILE="$HOME/.history" +export SAVEHIST=$HISTSIZE +setopt hist_ignore_space + +# Misc options +setopt autocd +setopt extendedglob +unsetopt BEEP + +# Aliases +alias ls='ls --color=auto' +alias grep='grep --color=auto' + +stty -ixon + +# Prompt +set_prompt() { + # PROMPT="%B%F{174}%n%f%b%F{15}@%f%F{81}%m %F{47}%~ %F{105}$(git-ps1)%F{15}$ " + PROMPT="%B%F{153}%n %F{47}%~ %F{105}$(git-ps1)%F{15}$ " +} +precmd_functions+=(set_prompt) -- cgit v1.2.3