summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTyler Davis <tyler@gluecode.net>2025-03-26 18:35:48 -0700
committerTyler Davis <tyler@gluecode.net>2025-03-26 18:35:48 -0700
commite4857c90d5c3859435f69c8476d6415fc3f5c564 (patch)
treee44b9098ea9aff7b8d26e78fccd2b876a85dcdb9
parentfb21caa3539731396bf2561a02163e387cd00348 (diff)
downloaddotfiles-e4857c90d5c3859435f69c8476d6415fc3f5c564.tar.gz
dotfiles-e4857c90d5c3859435f69c8476d6415fc3f5c564.zip
zsh,alacritty: fix confs
-rw-r--r--.config/alacritty/alacritty.toml2
-rw-r--r--.zshrc4
2 files changed, 4 insertions, 2 deletions
diff --git a/.config/alacritty/alacritty.toml b/.config/alacritty/alacritty.toml
index 6c4b428..2f5faeb 100644
--- a/.config/alacritty/alacritty.toml
+++ b/.config/alacritty/alacritty.toml
@@ -3,7 +3,7 @@
dimensions.columns = 140
dimensions.lines = 40
-option_as_alt = OnlyLeft
+option_as_alt = "OnlyLeft"
[font]
size = 14.0
diff --git a/.zshrc b/.zshrc
index 9ee8f81..e46a26f 100644
--- a/.zshrc
+++ b/.zshrc
@@ -56,7 +56,9 @@ bindkey -e
# ZSH VIM MODE
export KEYTIMEOUT=1
# https://github.com/jeffreytse/zsh-vi-mode
-source $HOME/.local/share/zsh/zsh-vi-mode.plugin.zsh
+if [ -e "$HOME/.local/share/zsh/zsh-vi-mode.plugin.zsh" ]; then
+ source $HOME/.local/share/zsh/zsh-vi-mode.plugin.zsh
+fi
###
## == Prompt ==