diff options
author | Tyler Davis <tyler@gluecode.net> | 2025-03-26 18:35:48 -0700 |
---|---|---|
committer | Tyler Davis <tyler@gluecode.net> | 2025-03-26 18:35:48 -0700 |
commit | e4857c90d5c3859435f69c8476d6415fc3f5c564 (patch) | |
tree | e44b9098ea9aff7b8d26e78fccd2b876a85dcdb9 | |
parent | fb21caa3539731396bf2561a02163e387cd00348 (diff) | |
download | dotfiles-e4857c90d5c3859435f69c8476d6415fc3f5c564.tar.gz dotfiles-e4857c90d5c3859435f69c8476d6415fc3f5c564.zip |
zsh,alacritty: fix confs
-rw-r--r-- | .config/alacritty/alacritty.toml | 2 | ||||
-rw-r--r-- | .zshrc | 4 |
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 @@ -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 == |