7 lines
187 B
Bash
Executable file
7 lines
187 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
# Setup .zshrc folder in .config for zsh to work
|
|
echo 'ZDOTDIR=$XDG_CONFIG_HOME/zsh/' >> /etc/zsh/zshenv
|
|
|
|
# Create folder for history
|
|
mkdir -p $(dirname "$HISTFILE")
|