ghostty-config
Original:🇺🇸 English
Translated
Guidance for editing Ghostty terminal configuration files. You must use this skill when creating or modifying Ghostty config files.
12installs
Sourcesammcj/agentic-coding
Added on
NPX Install
npx skill4agent add sammcj/agentic-coding ghostty-configTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Ghostty Configuration
Guidance for configuring the Ghostty terminal emulator. Ghostty uses text-based config files with sensible defaults and zero required configuration.
Config File Locations
XDG Path (All Platforms):
$XDG_CONFIG_HOME/ghostty/config- Defaults to if XDG_CONFIG_HOME undefined
~/.config/ghostty/config
macOS Additional Path:
~/Library/Application Support/com.mitchellh.ghostty/config- If both XDG and macOS paths exist, both are loaded with macOS path taking precedence
Config Syntax
# Comments start with #
background = 282c34
foreground = ffffff
font-family = "JetBrains Mono"
keybind = ctrl+z=close_surface
font-family = # Empty value resets to defaultRules:
- Keys are case-sensitive (use lowercase)
- Whitespace around is flexible
= - Values can be quoted or unquoted
- Empty values reset to defaults
- Every config key works as CLI flag:
ghostty --background=282c34
Config Loading & Includes
Files processed sequentially - later entries override earlier ones.
# Include additional configs
config-file = themes/dark.conf
config-file = ?local.conf # ? prefix = optional (no error if missing)Critical: directives are processed at the file's end. Keys appearing after won't override the included file's values.
config-fileconfig-fileRuntime Reloading
- Linux:
ctrl+shift+, - macOS:
cmd+shift+,
Some options cannot be reloaded at runtime. Some apply only to newly created terminals.
CLI Commands
Ghostty provides CLI actions via . Use for action-specific help.
ghostty +<action>ghostty +<action> --helpConfiguration Commands
| Command | Description |
|---|---|
| Show current effective configuration |
| Show default configuration |
| Show defaults with documentation |
| Validate configuration file for errors |
| Open config file in default editor |
Listing Commands
| Command | Description |
|---|---|
| List available fonts (fixed-width) |
| List available colour themes |
| Show current keybindings |
| Show default keybindings |
| List available colour names |
| List all available keybinding actions |
Other Commands
| Command | Description |
|---|---|
| Show version information |
| Show help |
| Show font face information |
| Manage SSH terminfo cache |
| Generate crash report |
| Open new window (Linux only) |
| Easter egg |
Launching with Options
Every config key works as a CLI flag:
bash
ghostty --background=282c34 --font-size=14
ghostty -e top # Run command in terminalmacOS Note: The CLI is a helper tool. To launch the terminal use or .
ghosttyopen -na Ghostty.appopen -na Ghostty.app --args --font-size=14Keybinding Syntax
Format:
keybind = trigger=actionTriggers
Modifiers: , /, //, //
shiftctrlcontrolaltoptoptionsupercmdcommandkeybind = ctrl+a=select_all
keybind = ctrl+shift+t=new_tab
keybind = super+backquote=toggle_quick_terminalPhysical keys (W3C codes): , , ,
KeyAkey_aDigit1BracketLeft- Physical keys have higher priority than unicode codepoints
- Use for non-US keyboard layouts
Key sequences (leader keys):
keybind = ctrl+a>n=new_window # Press ctrl+a, release, press n
keybind = ctrl+a>ctrl+n=new_window # Both with ctrlSequences wait indefinitely for next key.
Prefixes
| Prefix | Effect |
|---|---|
| System-wide (macOS: needs Accessibility permissions; Linux: needs XDG Desktop Portal) |
| Apply to all terminal surfaces |
| Don't consume input (passes through) |
| Only consume if action succeeds |
Combine prefixes:
global:unconsumed:ctrl+a=reload_configNote: Sequences cannot be used with or prefixes.
global:all:Special Values
- - Remove ALL keybindings
keybind = clear - - Remove specific binding
keybind = ctrl+a=unbind - - Prevent processing by Ghostty and terminal
keybind = ctrl+a=ignore
Shell Integration
Auto-injection for: bash, zsh, fish, elvish
shell-integration = detect # Default - auto-detect shell
shell-integration = none # Disable auto-injection
shell-integration = fish # Force specific shellShell Integration Features
shell-integration-features = cursor,sudo,title
shell-integration-features = no-cursor # Disable specific feature| Feature | Description |
|---|---|
| Blinking bar at prompt |
| Preserve terminfo with sudo |
| Set window title from shell |
| SSH environment compatibility |
| Auto terminfo on remote hosts |
What Shell Integration Enables
- Smart close (no confirm when at prompt)
- New terminals start in previous terminal's directory
- Prompt resizing via redraw
- Ctrl/Cmd+triple-click selects command output
- keybinding works
jump_to_prompt - Alt/Option+click repositions cursor at prompt
Manual Setup (if auto-injection fails)
Bash (add to at top):
~/.bashrcbash
if [ -n "${GHOSTTY_RESOURCES_DIR}" ]; then
builtin source "${GHOSTTY_RESOURCES_DIR}/shell-integration/bash/ghostty.bash"
fiZsh:
zsh
source ${GHOSTTY_RESOURCES_DIR}/shell-integration/zsh/ghostty-integrationFish:
fish
source "$GHOSTTY_RESOURCES_DIR"/shell-integration/fish/vendor_conf.d/ghostty-shell-integration.fishmacOS Note: does NOT support automatic shell integration. Install Bash via Homebrew or manually source the script.
/bin/bashCommon Configuration Patterns
Theme with Light/Dark Mode
theme = light:catppuccin-latte,dark:catppuccin-mochaQuick Terminal (Drop-down)
quick-terminal-position = top
quick-terminal-size = 50%
quick-terminal-autohide = true
keybind = global:super+backquote=toggle_quick_terminalCustom Colour Palette
palette = 0=#1d2021
palette = 1=#cc241d
# ... (0-255 supported)Font Configuration
font-family = "JetBrains Mono"
font-family-bold = "JetBrains Mono Bold"
font-size = 14
font-feature = -calt # Disable ligatures
font-feature = -ligaBackground Transparency
background-opacity = 0.9
background-blur = true # macOS, KDE Plasma onlyPlatform-Specific Notes
macOS Only:
- ,
window-position-x/y,window-save-statewindow-step-resize - ,
window-vsyncwindow-colorspace - ,
macos-titlebar-styletoggle_window_float_on_top - ,
font-thickenfont-thicken-strength - ,
toggle_visibility,undo,redocheck_for_updates - Global keybindings require Accessibility permissions
Linux/GTK Only:
- ,
window-title-font-familywindow-subtitle - (requires
window-titlebar-background/foreground)window-theme = ghostty - ,
window-show-tab-bargtk-single-instance - ,
toggle_maximizetoggle_window_decorations - ,
toggle_tab_overviewtoggle_command_palette prompt_surface_title
Linux Wayland Only:
quick-terminal-keyboard-interactivity- ,
gtk-quick-terminal-layergtk-quick-terminal-namespace
FreeType (Linux) Only:
freetype-load-flags
Reference Files
For complete option and keybinding references, load:
- - All config options by category (font, colour, window, etc.)
references/options.md - - All keybinding actions with parameters
references/keybindings.md
Load these when you need specific option details, valid values, or keybinding action syntax.