Join our community of software engineering leaders and aspirational developers. Always
stay in-the-know by getting the most important news and exclusive content delivered
fresh to your inbox to learn more about at-scale software development.
RESUBSCRIPTION REQUIRED
It seems that you’ve previously unsubscribed from our newsletter
in the past. Click the button below to open the re-subscribe form
in a new tab. When you’re done, simply close that tab and continue
with this form to complete your subscription.
RE-SUBSCRIBE
The New Stack does not sell your information or share it with
unaffiliated third parties. By continuing, you agree to our
Terms of Use and
Privacy Policy.
Welcome and thank you for joining The New Stack community!
Please answer a few simple questions to help us deliver the news and resources you are interested in.
COUNTRY
REQUIRED
Great to meet you!
Tell us a bit about your job so we can cover the topics you find most relevant.
How many employees are in the organization you work with?
REQUIRED
Welcome!
We’re so glad you’re here. You can expect all the best TNS content to arrive
Monday through Friday to keep you on top of the news and at the top of your game.
What’s next?
Check your inbox for a confirmation email where you can adjust your preferences
and even join additional groups.
Follow TNS on your favorite social media networks.
Become a TNS follower on LinkedIn.
Check out the latest featured and trending stories while you wait for your
first TNS newsletter.
As a JavaScript developer, what non-React tools do you use most often?
✓
Angular
0%
✓
Astro
0%
✓
Svelte
0%
✓
Vue.js
0%
✓
Other
0%
✓
I only use React
0%
✓
I don’t use JavaScript
0%
2025-01-18 07:00:52
Ghostty Will Get You Excited About Using a Terminal Again
Linux
/
Operations
Although Mitchell Hashimoto’s Ghostty is still in the early stages of development, it’s already a fantastic terminal app that shows promise.
Jan 18th, 2025 7:00am by
Jack Wallen
I’ve used so many terminal apps over the years that I’ve lost track of what they are, were or will be. To date, my favorite terminal app is Warp, but there’s another hiding in the shadows, ready to jump out and scare me into switching.
That new terminal app is called Ghostty, and it was created by Mitchell Hashimoto, co-founder of HashiCorp. This new terminal is lightweight, fast, feature-rich and cross-platform.
Ghostty does things a bit differently. Where some terminal apps have a GUI feature for configuration, this one uses a flat text file that is loaded upon launch (or reloaded manually, when you make changes). For that reason alone, Ghostty isn’t the ideal terminal for those just getting started with the command line. Instead, Ghostty is aimed at those with plenty of experience.
That’s not to say you can’t use Ghostty with the default minimal configuration; you certainly can, but you’d be missing out on a lot of features.
Speaking of features, what makes Ghostty so special? Where do we start?
- Platform-native GUI.
- Written in Zig and uses GTK4/libawaita on Linux and on macOS; it was written in Swift, which means Ghostty is 100% native to your OS.
- Supports multiple windows, tabs and split panes.
- GPU-accelerated rendering.
- 100 built-in themes and supports custom themes as well.
- Regular keyboard shortcuts.
- Shell integration (for bash, zsh, fish and elvish).
- Prompt redrawing on resize.
- Working directory reporting.
- Detection of active processes.
- Programmatic italicization.
- Support for ligatures and variable fonts.
- Grapheme clustering
Currently, Ghostty is installable on Arch Linux (and its derivatives), macOS and from source. I installed Ghostty on both macOS and Arch Linux and found the installation process to be quite simple. On macOS, just download the .dmg package, double-click on it, and then drag the Ghostty icon to the Applications folder.
With Arch Linux, the installation of Ghostty can be done from the standard repositories with pacman, like so:
sudo pacman -S ghostty
|
sudo pacman -S ghostty |
Once installed, open Ghostty from your desktop menu, and you can immediately start using it as your terminal emulator.
Configuring Ghostty
This is where things get a bit tricky, especially for those who’ve never configured anything via text file. Let me show you how to customize Ghostty.
The customizations are done the same way you might configure anything on Linux. First off, the configuration file is found in one of the following locations:
- Linux –
$HOME/.config/ghostty/config - macOS –
$HOME/Library/Application Support/com.mitchellh.ghostty/config
With Linux, you have to configure Ghostty through the configuration file and your favorite text editor. On macOS, you can click File > Settings to open a GUI text editor and make the changes you need. Note that, by default, the configuration file is empty, so you’re starting from square 0.
For example, say you want to change the background and foreground (text) color of Ghostty. Let’s say you want a background of Rose Pink and a foreground of black. Those configurations would be:
background = #ff66cc
foreground = #000000
|
background = #ff66cc foreground = #000000 |
Save those options and then click the Ghostty menu button > Reload Configuration. The Ghostty terminal app should now reflect your changes (Figure 1).

Figure 1: It’s much easier to configure Ghostty than you might think.
Let’s say you want to create a keyboard shortcut to split the current Ghostty window into two panes; for that, you could bind the action to the Ctrl+d shortcut like so:
keybind = ctrl+d=new_split:right
|
keybind = ctrl+d=new_split:right |
You can also configure the font family used in Ghostty. To do that, you’ll want to first list the available fonts with the command:
ghostty +list-fonts
|
ghostty +list-fonts |
You don’t get any visual cues as to what each font looks like, so you’ll either have to just guess or run a search on the font name you think might work. For example, you might want to use the Hack Bold font, which would be configured like this:
Or, you could apply one of the 100 themes available like this:
First, list all of the themes with the command ghostty +list-themes, which actually gives you a preview of what each theme looks like (Figure 2).

Figure 2: The available themes for Ghostty.
Once you’ve found the theme you want, you can configure it in the config file like so:
theme = Unikitty
|
theme = Unikitty |
Another cool trick is you can configure the Ghostty window title bar to use the same theme color as the background with (Figure 3):
window-theme = ghostty
|
window-theme = ghostty |

Figure 3: Adding themes to Ghostty can be a lot of fun.
I will say this regarding themes: For some reason, themes were not working on the Arch Linux installation, but they were on the macOS side of things.
There is an entire list of Ghostty configuration options you can view here. I recommend that you scroll through those options and see if there’s anything that catches your attention.
One thing I would advise with the configurations: Open a separate terminal window app to edit the config file. That way, if something goes wrong, you can easily change it and then reload the configuration file from the Ghostty menu.
Although Ghostty is still in the early stages of development, it’s already a fantastic terminal app that shows promise.
TRENDING STORIES
YOUTUBE.COM/THENEWSTACK
Tech moves fast, don’t miss an episode. Subscribe to our YouTube
channel to stream all our podcasts, interviews, demos, and more.
SUBSCRIBE
Group
Created with Sketch.

Jack Wallen is what happens when a Gen Xer mind-melds with present-day snark. Jack is a seeker of truth and a writer of words with a quantum mechanical pencil and a disjointed beat of sound and soul. Although he resides…
Read more from Jack Wallen
SHARE THIS STORY
TRENDING STORIES
TNS DAILY NEWSLETTER
Receive a free roundup of the most recent TNS articles in your inbox each day.
Credit to the Original Article | Explore More of Their Work If You Found This Article Enjoyable.
https://thenewstack.io/ghostty-will-get-you-excited-about-using-a-terminal-again/


