13 lines
417 B
Plaintext
13 lines
417 B
Plaintext
# Config directory
|
|
export XDG_CONFIG_HOME="$HOME/.config"
|
|
export XDG_DATA_HOME="$HOME/.local/share"
|
|
export XDG_CACHE_HOME="$HOME/.cache/shell"
|
|
|
|
# Konfigi zsh
|
|
export ZDOTDIR="$XDG_CONFIG_HOME/shell"
|
|
|
|
export HISTFILE="$XDG_CACHE_HOME/zhistory" # History filepath
|
|
export HISTSIZE=10000 # Maximum events for internal history
|
|
export SAVEHIST=10000 # Maximum events in history file
|
|
|