diff options
author | ZachIR <zachir@librem.one> | 2025-01-18 23:39:25 -0600 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-01-18 23:45:39 -0600 |
commit | 44fbfc95f779e5d6bbdaaf250ada4dfcdae5cb2a (patch) | |
tree | e2fb9b34f28d7833213f90efcae7f81e5ccb2cf2 /installers | |
parent | 2b9df77bbc5fa85f94b15b043c659168a606d1db (diff) |
Cleanup zsh configs + add zplug
Just a couple plugins for syntax highlighting and history searching,
removing a bunch of old unused files, and changing to just accept the
standard of using dotfiles in the home directory.
Diffstat (limited to 'installers')
-rwxr-xr-x | installers/set_zshdirs.sh | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/installers/set_zshdirs.sh b/installers/set_zshdirs.sh deleted file mode 100755 index 2d82f19..0000000 --- a/installers/set_zshdirs.sh +++ /dev/null @@ -1,13 +0,0 @@ -#!/bin/sh - -if [ -f /etc/zshenv ]; then - ZSHENV="/etc/zshenv" -elif [ -d /etc/zsh ]; then - ZSHENV="/etc/zsh/zshenv" -else - ZSHENV="/etc/zshenv" -fi - -if ! grep -q "ZDOTDIR" $ZSHENV 2>/dev/null; then - echo "export ZDOTDIR=\"\$HOME\"/.config/zsh" >> $ZSHENV -fi |