diff options
author | 2025-01-03 03:48:55 +0100 | |
---|---|---|
committer | 2025-01-03 03:48:55 +0100 | |
commit | 8a501492dedf44b0e763a2f9ff2f42bb4bd52b7a (patch) | |
tree | 1156b7c0d2ea45a46381624a67146ae54135ab69 | |
parent | a5498aa320124153be5caa59d61c13e4e6357595 (diff) | |
download | zuwu-8a501492dedf44b0e763a2f9ff2f42bb4bd52b7a.tar.gz zuwu-8a501492dedf44b0e763a2f9ff2f42bb4bd52b7a.tar.bz2 zuwu-8a501492dedf44b0e763a2f9ff2f42bb4bd52b7a.tar.lz zuwu-8a501492dedf44b0e763a2f9ff2f42bb4bd52b7a.zip |
fix: comments
-rwxr-xr-x | install.zsh | 8 | ||||
-rwxr-xr-x | zuwu.zsh | 17 |
2 files changed, 18 insertions, 7 deletions
diff --git a/install.zsh b/install.zsh index edcf501..c0dcd94 100755 --- a/install.zsh +++ b/install.zsh @@ -21,22 +21,22 @@ if [[ "$(basename "$__filename")" == "zsh" ]]; then else cp -r "$__dirname/zuwu.zsh" "$TARGET/zuwu.zsh" fi -<<EOF2 > "$TARGET/setup.zsh" +<<EOF_SETUPSCRIPT > "$TARGET/setup.zsh" #!/usr/bin/env zsh if [[ -f "\$HOME/.zshrc" ]]; then local NEWZSHRC="\$HOME/.zshrc.\$(date -u +%Y-%m-%dT%H:%M:%S%Z)" echo -e "\x1b[0;33mExitsing zshrc found, moving to \x1b[0;34m\$NEWZSHRC\x1b[0m" mv "\$HOME/.zshrc" "\$NEWZSHRC" fi -<<EOF > "\$HOME/.zshrc" +<<EOF_ZSHRC > "\$HOME/.zshrc" for d in /usr/share/zsh/plugins/zuwu /usr/local/share/zsh/plugins/zuwu \\\$HOME/.local/share/zsh/plugins/zuwu; do if [[ -d "\\\$d" ]]; then source "\\\$d/zuwu.zsh" fi done -EOF +EOF_ZSHRC echo -e "\x1b[0;32mPlease run \x1b[0;34msource \$HOME/.zshrc\x1b[0;32m to finish installing zuwu.\x1b[0m" -EOF2 +EOF_SETUPSCRIPT chmod +x "$TARGET/setup.zsh" if [[ "$_ZUWU_INSTALLED" != "1" ]]; then echo -e "\x1b[0;32mPlease run \x1b[0;34m$TARGET/setup.zsh\x1b[0;32m to install zuwu for the current user.\x1b[0m" @@ -3,6 +3,7 @@ export _ZUWU_INSTALLED=1; +# Completion Handling if ! grep '# The following lines were added by compinstall' ~/.zshrc >/dev/null 2>/dev/null && ! grep 'compinit' ~/.zshrc; then <<EOF >> ~/.zshrc # Note: Do not remove the 'The following lines were...' comment! @@ -20,6 +21,7 @@ compinit # End of lines added by compinstall EOF fi +# History Size Determination if ! grep 'HISTSIZE' ~/.zshrc >/dev/null 2>/dev/null; then <<EOF >>~/.zshrc # Lines configured by zsh-newuser-install @@ -30,9 +32,10 @@ SAVEHIST="10000" EOF fi +# - noop() {} -# Fix PATH +# Ensure ~/.local/bin is in the PATH - note that this will "match" if something like `.*$HOME/.local/bin.*`, i don't care if ! grep "$HOME/.local/bin" <<< "$PATH"; then echo -n 'if ! grep "$HOME/.local/bin" <<< "$PATH"; then export PATH="$PATH:$HOME/.local/bin" @@ -40,10 +43,16 @@ fi ' >> "$HOME/.zshenv" export PATH="$PATH:$HOME/.local/bin" fi +# Ensure ~/.local/bin exists +if ! [[ -d "$HOME/.local/bin" ]]; then + mkdir "$HOME/.local/bin" || echo "Failed to create '$HOME/.local/bin' for your sanity's sake. For your own sanity, please make this directory." +fi +# Load some shit that you will need autoload -U up-line-or-beginning-search autoload -U down-line-or-beginning-search +# Keybinds and all that jazz reloadopt() { if [[ -f "$HOME/.zshconf" ]]; then if ! [[ -d "$HOME/.config" ]]; then @@ -103,8 +112,10 @@ reloadopt() { fi if "$DELETE_CHAR"; then bindkey "^[[3~" delete-char + bindkey "^[[3;2~" delete-wo0rd else bindkey -r "^[[3~" + bindkey -r "^[[3;2~" fi if "$INSEND_MOVE_KEY"; then bindkey "^[[H" beginning-of-line @@ -116,13 +127,13 @@ reloadopt() { } reloadopt +# Fix $HOME path being entirely inlined in zsh completion shit (or any other string at the beginnig thereof) if grep "\"$HOME" "$HOME/.zshrc"; then sed -i "s|\"$HOME|\"\$HOME|g" "$HOME/.zshrc" - # # # # # # # # # # # # # # # # # # # # BUFFER zstyle :compinstall filename "$HOME/.zshrc" fi -# Load zgen +# Load zgen, if present if [[ -d "$HOME/.zgen" ]]; then source "$HOME/.zgen/zgen.zsh" ZGEN=true |