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