8 lines
187 B
Text
8 lines
187 B
Text
|
#!/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")
|