Replies: 1 comment 7 replies
-
For the GIT_DIR=~/.dotfiles.git git config core.bare false
GIT_DIR=~/.dotfiles.git git config core.worktree ~ For colors, see https://github.com/romkatv/powerlevel10k/blob/master/README.md#how-do-i-change-prompt-colors. The location of the cache cannot be changed. The location of |
Beta Was this translation helpful? Give feedback.
-
I use
GIT_DIR="$HOME"/.dotfiles.git/ GIT_WORK_TREE="$HOME"
to manage dotfiles and toggle this dotfile environment on withexport GIT_DIR="$HOME"/.dotfiles.git/ GIT_WORK_TREE="$HOME"
.vcs
segment does not detect this (not that I expect to). Is it possible to still use this segment somehow or should I try to make a custom segment for it? In the event that I'm in a git repo while the dotfile environment is on ,vcs
info should be prioritized showing the repo I'm on over vcs info for the dotfile environment.If I want the prompt to use colors from my terminal theme, I have to hardcode this (by looking at the theme's defined colors) and there's not a way to have a prompt to pick from the set of colors from the theme to automatically use, right?
Can the location of cache and .p10k.zsh be changed? I guess .p10k.zsh unless one decides to run the wizard again can but not sure about the cache, which I would like to dump to
$XDG_CACHE_HOME/zsh
.Much appreciated.
Beta Was this translation helpful? Give feedback.
All reactions