12 lines
227 B
Bash
12 lines
227 B
Bash
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
|