add zsh configs

This commit is contained in:
surtur 2022-05-04 12:15:30 +02:00
parent bdf0c78623
commit 2b195f0a12
Signed by: wanderer
GPG Key ID: 19CE1EC1D9E0486D
2 changed files with 12 additions and 0 deletions

1
.zshenv Normal file
View File

@ -0,0 +1 @@
export PATH="$HOME/.nix-profile/bin:$PATH"

11
.zshrc Normal file
View File

@ -0,0 +1,11 @@
HISTFILE=~/.histfile
HISTSIZE=1000
SAVEHIST=1000
setopt autocd extendedglob
bindkey -e
autoload -Uz compinit
compinit
if [ -e "$HOME/.nix-profile/etc/profile.d/nix.sh" ]; then . "$HOME/.nix-profile/etc/profile.d/nix.sh"; fi