Atuin - another chance.

This commit is contained in:
Bartek Stalewski 2024-12-27 01:15:02 +01:00
parent a82586a89c
commit be7958e788
No known key found for this signature in database
4 changed files with 325 additions and 1 deletions

View file

@ -10,6 +10,7 @@ mkdir -p "${XDG_CACHE_HOME}/zsh"
mkdir -p "${XDG_DATA_HOME}/zsh"
# global exports and options
export HISTFILE="${XDG_DATA_HOME}/zsh/history"
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_SAVE_NO_DUPS
setopt HIST_REDUCE_BLANKS
@ -22,8 +23,9 @@ path=(~/.local/bin "${path[@]}")
# source configuration
source "${ZDOTDIR}/aliases.zsh"
source "${ZDOTDIR}/keys.zsh"
## it has to be last
source "${ZDOTDIR}/fzf.zsh"
## it has to be last
source "${ZDOTDIR}/atuin.zsh"
# source modules
source "${HOME}/.local/git/zsh_modules/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh"