This commit is contained in:
Anthony Cicchetti 2020-07-21 21:11:43 -04:00
parent c2fc797031
commit 6a25ea8c08
2 changed files with 6 additions and 2 deletions

View file

@ -10,4 +10,8 @@ spoon.WindowHalfsAndThirds:bindHotkeys(spoon.WindowHalfsAndThirds.defaultHotkeys
hs.hotkey.bind({"cmd", "alt", "ctrl"}, "SPACE", function ()
spoon.Commander.show()
end)
end)
hs.hotkey.bind({"ctrl"}, "t", function ()
hs.application.launchOrFocus("iTerm")
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"}
local names = {name, "Iosevka Custom", "Noto Color Emoji", "JetBrains Mono", "Monaco"}
return wezterm.font_with_fallback(names,params)
end