Marty Oehme
6ac0b683a3
Removed home module, since it harbors three necessary files for other modules: the basic configuration files for bash, and the environment setup for zsh to work with xdg specifications. While a descriptive module, the splitting enables further modularization and is more coherent towards their specific uses (bash and zsh setup).
6 lines
152 B
Bash
6 lines
152 B
Bash
#!/usr/bin/env zsh
|
|
#
|
|
|
|
# make zsh source the correct directory
|
|
export XDG_CONFIG_HOME=${XDG_CONFIG_HOME:-"$HOME/.config"}
|
|
ZDOTDIR="$XDG_CONFIG_HOME/zsh"
|