summaryrefslogtreecommitdiff
path: root/.config/zsh/.zshrc
diff options
context:
space:
mode:
Diffstat (limited to '.config/zsh/.zshrc')
-rw-r--r--.config/zsh/.zshrc52
1 files changed, 0 insertions, 52 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc
deleted file mode 100644
index f46da04..0000000
--- a/.config/zsh/.zshrc
+++ /dev/null
@@ -1,52 +0,0 @@
-# Configuration
-
-## Basic auto/tab complete.
-autoload -U compinit
-zstyle ':completion:*' menu select
-zmodload zsh/complist
-compinit
-_comp_options+=(globdots) # Include hidden files.
-
-## VI mode
-bindkey -v
-
-## Use vim keys in tab complete menu.
-bindkey -M menuselect 'h' vi-backward-char
-bindkey -M menuselect 'k' vi-up-line-or-history
-bindkey -M menuselect 'l' vi-forward-char
-bindkey -M menuselect 'j' vi-down-line-or-history
-bindkey -v '^?' backward-delete-char
-
-# Configure history
-
-## Where the bash history file is saved
-HISTFILE="${XDG_CACHE_HOME:-$HOME/.cache}/zsh/history"
-
-## Don't put duplicate lines or lines starting with space in the history.
-HISTCONTROL=ignoreboth
-
-## The number of commands to remember in the command history.
-HISTSIZE=1000
-SAVEHIST=1000
-
-## The maximum number of lines contained in the history file
-HISTFILESIZE=2000
-
-# Source extra files.
-
-## Load aliases if they exist.
-[ -f "${XDG_CONFIG_HOME:-$HOME/.config}/aliasrc" ] && source "${XDG_CONFIG_HOME:-$HOME/.config}/aliasrc"
-
-## NVM
-export NVM_DIR="$HOME/.local/src/nvm"
-[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
-[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
-
-## Powerlevel10k
-source /usr/share/zsh-theme-powerlevel10k/powerlevel10k.zsh-theme
-
-## To customize prompt, run `p10k configure` or edit ~/.config/zsh/.p10k.zsh.
-[[ ! -f ~/.config/zsh/.p10k.zsh ]] || source ~/.config/zsh/.p10k.zsh
-
-## Load syntax highlighting; should be last.
-source /usr/share/zsh/plugins/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh 2>/dev/null