├── .editorconfig ├── .github └── workflows │ └── check.yml ├── LICENSE ├── README.md ├── assets ├── frappe.webp ├── latte.webp ├── macchiato.webp ├── mocha.webp └── preview.webp ├── ghostty.tera ├── renovate.json └── themes ├── catppuccin-frappe.conf ├── catppuccin-latte.conf ├── catppuccin-macchiato.conf └── catppuccin-mocha.conf /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/ghostty/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/ghostty/HEAD/.github/workflows/check.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/ghostty/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/ghostty/HEAD/README.md -------------------------------------------------------------------------------- /assets/frappe.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/ghostty/HEAD/assets/frappe.webp -------------------------------------------------------------------------------- /assets/latte.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/ghostty/HEAD/assets/latte.webp -------------------------------------------------------------------------------- /assets/macchiato.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/ghostty/HEAD/assets/macchiato.webp -------------------------------------------------------------------------------- /assets/mocha.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/ghostty/HEAD/assets/mocha.webp -------------------------------------------------------------------------------- /assets/preview.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/ghostty/HEAD/assets/preview.webp -------------------------------------------------------------------------------- /ghostty.tera: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/ghostty/HEAD/ghostty.tera -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/ghostty/HEAD/renovate.json -------------------------------------------------------------------------------- /themes/catppuccin-frappe.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/ghostty/HEAD/themes/catppuccin-frappe.conf -------------------------------------------------------------------------------- /themes/catppuccin-latte.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/ghostty/HEAD/themes/catppuccin-latte.conf -------------------------------------------------------------------------------- /themes/catppuccin-macchiato.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/ghostty/HEAD/themes/catppuccin-macchiato.conf -------------------------------------------------------------------------------- /themes/catppuccin-mocha.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/catppuccin/ghostty/HEAD/themes/catppuccin-mocha.conf --------------------------------------------------------------------------------