summaryrefslogtreecommitdiff
path: root/.zshrc
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2025-07-04 13:19:29 -0400
committerJack Jamison <jackqjamison@gmail.com>2025-07-04 13:19:29 -0400
commite7f26a104a2202dfe16f13228613402b6c1686eb (patch)
treef7d78a4875691691ac0803da5e3b1cc4d9652f86 /.zshrc
parent04a6667dcd5949b4fb5daaec06be3eb9e539b04a (diff)
clean up nvim
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/.zshrc b/.zshrc
index 4022eac..baf74a9 100644
--- a/.zshrc
+++ b/.zshrc
@@ -10,7 +10,7 @@ export HISTFILE="$HOME/.history"
export SAVEHIST=$HISTSIZE
setopt hist_ignore_space
-# Misc
+# Misc options
setopt autocd
setopt extendedglob
@@ -32,8 +32,8 @@ bindkey "^R" history-incremental-search-backward # isearch
# Change cursor shape for different vi modes.
function zle-keymap-select () {
case $KEYMAP in
- vicmd) echo -ne '\e[1 q';; # block
- viins|main) echo -ne '\e[5 q';; # beam
+ vicmd) echo -ne '\e[1 q';; # block
+ viins|main) echo -ne '\e[5 q';; # beam
esac
}
zle -N zle-keymap-select