diff options
author | zachir <zachir@librem.one> | 2023-02-11 20:44:38 -0600 |
---|---|---|
committer | zachir <zachir@librem.one> | 2023-02-11 20:44:38 -0600 |
commit | bfaeb374d26f6d763e9f9b1aa39d344d2d4c36ea (patch) | |
tree | 9b46711e1b39238335b9184dd58be8a82f24ce81 | |
parent | 635f001391e89f2d587ee0e70e656f9accd695c2 (diff) | |
parent | 8d9bd2041c2d93c5d87b7b82ed8273b6bdf6470b (diff) |
Merge branch 'master' of zachir.xyz:zachir/dotfiles
-rw-r--r-- | alacritty/alacritty.yml | 2 | ||||
-rw-r--r-- | awesome/rc.lua | 2 | ||||
-rw-r--r-- | zsh/.zshrc | 6 |
3 files changed, 8 insertions, 2 deletions
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 diff --git a/awesome/rc.lua b/awesome/rc.lua index ad865ee..943419b 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 @@ -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 |