Fix HISTFILE
, HISTSIZE
, HISTFILESIZE
that /usr/share/zsh/manjaro-zsh-config
keeps overriding
#106
Labels
Milestone
The detangling of multiple problems:
~/.config/zsh/.zshrc
Loads~/.config/zsh/config.d/*
, which includes00-history-size.zsh
~/.config/zsh/.zshrc
MUST Load~/.zshrc
AFTER, due to bugs in Manjaro's config:bash
select-word-style
Ctrl+w yank & paste Ctrl+y/usr/share/zsh/manjaro-zsh-config
includes thezsh-syntax-highlighting
plugin before our settings are applied!~/.zshrc
Is loaded, and was working around the issue by settingselect-word-style bash
AND usingZSH_AUTOSUGGEST_IGNORE_WIDGETS
workaround.ZSH_AUTOSUGGEST_IGNORE_WIDGETS
workaround is now failing to work also!select-word-style bash
AND theZSH_AUTOSUGGEST_IGNORE_WIDGETS
does not workselect-word-style bash
disabled and$ZSH_AUTOSUGGEST_IGNORE_WIDGETS
set... it works again! (╯°□°)╯︵ ┻━┻/usr/share/zsh/manjaro-zsh-config
, they are constrained to be in this file. Yet, because~/.zshrc
is sourced AFTER the~/.config/zsh/config.d/*
and thus00-history-size.zsh
, it causes a problem withHISTFILE
being overridden!The text was updated successfully, but these errors were encountered: