diff options
| -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  | 
