From 1d0738c2299190beca4194e61245d612b9140724 Mon Sep 17 00:00:00 2001 From: zachir Date: Sat, 11 Feb 2023 20:14:49 -0600 Subject: fix e alias for zsh --- zsh/.zshrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/zsh/.zshrc b/zsh/.zshrc index 5442bc9..3330042 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -18,6 +18,12 @@ if [ -f "$XDG_CONFIG_HOME"/sh/functions ]; then source "$XDG_CONFIG_HOME"/sh/functions fi +if [ -n "$ZDOTDIR"/.zshrc -a -f "$ZDOTDIR"/.zshrc ]; then + alias e='source "$ZDOTDIR"/.zshrc' +elif [ -f "$HOME"/.zshrc ]; then + alias e='source ~/.zshrc' +fi + bindkey "^?" backward-delete-char # bindkey -v -- cgit v1.2.3 From 5d2ee8cf601cc8a520b5452504e5a57bcd3d87ac Mon Sep 17 00:00:00 2001 From: zachir Date: Sat, 11 Feb 2023 20:15:05 -0600 Subject: make font slightly smaller in alacritty --- alacritty/alacritty.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml index 2c247d5..1831a2b 100644 --- a/alacritty/alacritty.yml +++ b/alacritty/alacritty.yml @@ -154,7 +154,7 @@ font: style: Bold Italic # Point size - size: 10.0 + size: 8.0 # Offset is the extra space around each character. `offset.y` can be thought # of as modifying the line spacing, and `offset.x` as modifying the letter -- cgit v1.2.3 From 8d9bd2041c2d93c5d87b7b82ed8273b6bdf6470b Mon Sep 17 00:00:00 2001 From: zachir Date: Sat, 11 Feb 2023 20:15:26 -0600 Subject: use alacritty as term in awesome --- awesome/rc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awesome/rc.lua b/awesome/rc.lua index 35fc3db..24ef486 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -81,7 +81,7 @@ local spawnatbottom = true -- This is used later as the default terminal and editor to run. -terminal = "st" +terminal = "alacritty" editor = os.getenv("EDITOR") or "nvim" editor_cmd = terminal .. " -e " .. editor -- cgit v1.2.3