summaryrefslogtreecommitdiffstatshomepage
path: root/zshrc
diff options
context:
space:
mode:
authorToby Vincent <tobyv13@gmail.com>2021-11-15 19:16:31 -0600
committerToby Vincent <tobyv13@gmail.com>2021-11-15 19:16:31 -0600
commit0502e98cd5e55803856299299062c6e8577b210d (patch)
treee09f3c90c8848d5a733b8df9b77a32dff4b1354b /zshrc
parent82ad6c1edfb9334eab1a3978e82040df15414fa7 (diff)
fix: fixed bugs and menu completion
Diffstat (limited to 'zshrc')
-rw-r--r--zshrc31
1 files changed, 0 insertions, 31 deletions
diff --git a/zshrc b/zshrc
deleted file mode 100644
index dd6a86e..0000000
--- a/zshrc
+++ /dev/null
@@ -1,31 +0,0 @@
-#!/usr/bin/env zsh
-
-typeset -A ZSH_HIGHLIGHT_STYLES
-ZSH_HIGHLIGHT_STYLES[path]='fg=cyan'
-HYPHEN_INSENSITIVE="true"
-DISABLE_UPDATE_PROMPT="true"
-DISABLE_AUTO_TITLE="true"
-setopt HIST_IGNORE_ALL_DUPS
-setopt NO_BEEP
-setopt MENU_COMPLETE
-
-fpath=(~/.local/share/zsh/site-functions "${fpath[@]}")
-
-source ~/.zsh/zsh-autosuggestions/zsh-autosuggestions.zsh
-if [ -d "${HOME}/.zsh" ]; then for f in ~/.zsh/*; do source $f; done; fi
-
-eval "$(starship init zsh)"
-
-function set_win_title() {
- folder=$(sed "s/$USER/~/g" <<<$PWD:t)
-
- window_title="\033]0;$USER@$HOST: $folder\007"
- echo -ne "$window_title"
-}
-
-precmd_functions+=(set_win_title)
-
-autoload -U compinit
-compinit -i
-
-source ~/.zsh/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh