You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to understand how zsh works in manjaro and in the user's home there is only one .zshrc file with the following content:
# use powerline
USE_POWERLINE="true"
# Source manjaro-zsh-configuration
if [[ -e /usr/share/zsh/manjaro-zsh-config ]]; then
source /usr/share/zsh/manjaro-zsh-config
fi
# Use manjaro zsh prompt
if [[ -e /usr/share/zsh/manjaro-zsh-prompt ]]; then
source /usr/share/zsh/manjaro-zsh-prompt
fi
I made a fork of this project and created a package for biglinux, which is derived from manjaro, but zsh didn't work only if the .p10k.zsh file is in the user's home. So I'm a little confused how it's working in manjaro, how do I fetch the zsh configuration that's in /usr/share/zsh/* ?
The text was updated successfully, but these errors were encountered:
This PKGBUILD should answer all the questions about the package. ~/.zshrc just points to the config files that under /usr/share/zsh. The lines that fetch the configuration are the ones that start with the word source.
I'm trying to understand how zsh works in manjaro and in the user's home there is only one .zshrc file with the following content:
I made a fork of this project and created a package for biglinux, which is derived from manjaro, but zsh didn't work only if the .p10k.zsh file is in the user's home. So I'm a little confused how it's working in manjaro, how do I fetch the zsh configuration that's in /usr/share/zsh/* ?
The text was updated successfully, but these errors were encountered: