This commit is contained in:
Anthony Cicchetti 2020-08-10 09:43:57 -04:00
parent 151b963af3
commit a3c857360b
3 changed files with 13 additions and 8 deletions

View file

@ -32,6 +32,8 @@ window:
# Spread additional padding evenly around the terminal content.
dynamic_padding: false
dynamic_title: true
# Window decorations
#
# Values for `decorations`:
@ -83,12 +85,12 @@ font:
# Italic font face
italic:
family: Iosevka Custom
family: Dank Mono
# The `style` can be specified to pick a specific face.
style: Medium Italic
# style: Medium Italic
# Point size
size: 12.0
size: 16.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 spacing.
@ -200,7 +202,7 @@ colors:
# - Linear
#
# Specifying a `duration` of `0` will disable the visual bell.
visual_bell:
bell:
animation: EaseOutExpo
duration: 0
@ -261,7 +263,6 @@ selection:
# clipboard.
save_to_clipboard: false
dynamic_title: true
cursor:
# Cursor style
@ -284,7 +285,7 @@ live_config_reload: true
# You can set `shell.program` to the path of your favorite shell, e.g. `/bin/fish`.
# Entries in `shell.args` are passed unmodified as arguments to the shell.
shell:
program: /usr/bin/zsh
program: /usr/local/bin/zsh
args:
- --login
# - "sleep 1 && tmux new -A -s DefaultSession"

View file

@ -13,5 +13,9 @@ hs.hotkey.bind({"cmd", "alt", "ctrl"}, "SPACE", function ()
end)
hs.hotkey.bind({"ctrl"}, "t", function ()
hs.application.launchOrFocus("iTerm")
hs.application.launchOrFocus("Alacritty")
end)
hs.hotkey.bind({"cmd", "alt"}, ",", function ()
hs.application.launchOrFocus("System Preferences")
end)

View file

@ -1,7 +1,7 @@
local wezterm = require 'wezterm';
function font_with_fallback(name, params)
local names = {name, "Iosevka Custom", "Noto Color Emoji", "JetBrains Mono", "Monaco"}
local names = {name, "Iosevka 3.3.0 Custom", "Noto Color Emoji", "JetBrains Mono", "Monaco"}
return wezterm.font_with_fallback(names,params)
end