feat(hosts/hati): use Ghostty as main terminal application

This commit is contained in:
Jim Myhrberg
2025-09-22 14:50:47 +01:00
parent 447fcd04a8
commit 4baed4f299
2 changed files with 7 additions and 4 deletions

View File

@@ -2,7 +2,7 @@
# General settings
# ------------------------------------------------------------------------------
auto-update-channel = tip
auto-update-channel = stable
# ------------------------------------------------------------------------------
# Theme settings
@@ -11,7 +11,7 @@ auto-update-channel = tip
theme = tango-with-monokai
window-theme = dark
background-opacity = 0.8
background-opacity = 0.75
background-blur-radius = 20
# ------------------------------------------------------------------------------
@@ -75,5 +75,8 @@ window-step-resize = true
keybind = super+c=copy_to_clipboard
keybind = super+v=paste_from_clipboard
# Toggle Visibility (cmd+ctrl+r)
keybind = global:super+ctrl+r=toggle_visibility
# Quick Terminal (alt+`)
keybind = global:alt+grave_accent=toggle_quick_terminal

View File

@@ -35,8 +35,8 @@ local function init_hotkeys()
)
-- Use Warp as my primary terminal application.
apptoggle:bind({ 'cmd', 'ctrl' }, 'R', { 'Warp' })
apphider:autoHide('Warp') -- auto-hide Warp when it loses focus
-- apptoggle:bind({ 'cmd', 'ctrl' }, 'R', { 'Warp' })
-- apphider:autoHide('Warp') -- auto-hide Warp when it loses focus
end
--------------------------------------------------------------------------------