diff options
author | romkatv <roman.perepelitsa@gmail.com> | 2020-01-19 17:24:12 +0300 |
---|---|---|
committer | romkatv <roman.perepelitsa@gmail.com> | 2020-01-19 17:58:04 +0300 |
commit | e3743957469d508ff59c69df27b0dfcc1d1605a4 (patch) | |
tree | 897bae7cc0e4ccb0596d440e4436c4812293244b /internal/configure.zsh | |
parent | 0a484d1d994de7febcdb1ffa9c9d2635c65c285d (diff) |
follow ~/.zshrc and ~/.p10k.zsh symlinks
When the user tells the configuration wizard to apply
changes to ~/.zshrc and ~/.p10k.zsh and these files
are symlinks, apply changes to the targets.
see #426
Diffstat (limited to 'internal/configure.zsh')
-rw-r--r-- | internal/configure.zsh | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/internal/configure.zsh b/internal/configure.zsh index 1cd16dd1..a627ca6a 100644 --- a/internal/configure.zsh +++ b/internal/configure.zsh @@ -3,9 +3,10 @@ typeset -gr __p9k_wizard_lines=21 typeset -gr __p9k_zd=${ZDOTDIR:-$HOME} typeset -gr __p9k_zd_u=${${${(q)__p9k_zd}/#(#b)${(q)HOME}(|\/*)/'~'$match[1]}//\%/%%} typeset -gr __p9k_cfg_basename=.p10k.zsh -typeset -gr __p9k_cfg_path=$__p9k_zd/$__p9k_cfg_basename +typeset -gr __p9k_cfg_path_o=$__p9k_zd/$__p9k_cfg_basename +typeset -gr __p9k_cfg_path=${__p9k_cfg_path_o:A} typeset -gr __p9k_cfg_path_u=$__p9k_zd_u/$__p9k_cfg_basename -typeset -gr __p9k_zshrc=$__p9k_zd/.zshrc +typeset -gr __p9k_zshrc=${${:-$__p9k_zd/.zshrc}:A} typeset -gr __p9k_zshrc_u=$__p9k_zd_u/.zshrc typeset -gr __p9k_root_dir_u=${${${(q)__p9k_root_dir}/#(#b)${(q)HOME}(|\/*)/'~'$match[1]}//\%/%%} @@ -61,7 +62,7 @@ function _p9k_can_configure() { function p9k_configure() { emulate -L zsh - setopt no_hist_expand extended_glob + setopt no_hist_expand extended_glob no_prompt_bang prompt_{percent,subst} no_aliases ( set -- -f source $__p9k_root_dir/internal/wizard.zsh |