feat(tools): add Ghostty terminal emulator and Zed

This commit is contained in:
Stefan Imhoff
2025-01-03 17:51:54 +01:00
parent e3ffc262a0
commit 6e36071dcd
7 changed files with 10 additions and 5 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

View File

@@ -245,7 +245,7 @@ As a developer, you work a lot with version control. I use the [GitHub](https://
<Image src="/assets/images/posts/raycast-homebrew.webp" alt="Homebrew Show Installed" />
</Figure>
I use the [Kill Process](https://www.raycast.com/rolandleth/kill-process) extension to terminate hung processes. The [Port Manager](https://www.raycast.com/lucaschultz/port-manager) allows me to view or kill ports. The [Brew](https://www.raycast.com/nhojb/brew) extension allows me to use Homebrew from Raycast. I work a lot with Neovim and tmux in my WezTerm terminal. The [Tmux Sessioner](https://www.raycast.com/louishuyng/tmux-sessioner) allows me to jump directly into the terminal in a specific project.
I use the [Kill Process](https://www.raycast.com/rolandleth/kill-process) extension to terminate hung processes. The [Port Manager](https://www.raycast.com/lucaschultz/port-manager) allows me to view or kill ports. The [Brew](https://www.raycast.com/nhojb/brew) extension allows me to use Homebrew from Raycast. I work a lot with Neovim and tmux in my Ghostty terminal. The [Tmux Sessioner](https://www.raycast.com/louishuyng/tmux-sessioner) allows me to jump directly into the terminal in a specific project.
I use extensions to format or create code. For example, I use [SVGO](https://www.raycast.com/kaichi/raycast-svgo) to optimize SVGs, [SVGR](https://www.raycast.com/rickMcGavin/svgr) to create React components from SVGs, and tools like [Format JSON](https://www.raycast.com/destiner/json-format) and [Prettier Code](https://www.raycast.com/lin/prettier) to format any code. Its convenient to format the code before pasting it anywhere on the web.

View File

@@ -10,15 +10,20 @@ export const development = [
url: 'https://neovim.io/',
image: '/assets/images/tools/neovim.webp',
},
{
name: 'Ghostty',
url: 'https://ghostty.org/',
image: '/assets/images/tools/ghostty.webp',
},
{
name: 'Tmux',
url: 'https://tmux.github.io/',
image: '/assets/images/tools/tmux.webp',
},
{
name: 'Wezterm',
url: 'https://wezfurlong.org/wezterm/',
image: '/assets/images/tools/wezterm.webp',
name: 'Zed',
url: 'https://zed.dev/',
image: '/assets/images/tools/zed.webp',
},
{
name: 'Kaleidoscope',

View File

@@ -31,7 +31,7 @@ Besides that, I have a few backup hard drives for automatic Time Machine backups
## Development
[Neovim](https://neovim.io/) with [LazyVim](https://www.lazyvim.org/) as a plugin manager is my default code editor. I use it in the [Wezterm terminal emulator](https://wezfurlong.org/wezterm/) with the [Tmux terminal multiplexer](https://tmux.github.io/). Occasionally, I use [Visual Studio Code](https://code.visualstudio.com/) with the [Neovim extension](https://marketplace.visualstudio.com/items?itemName=asvetliakov.vscode-neovim). I use [LazyGit](https://github.com/jesseduffield/lazygit) for Git.
[Neovim](https://neovim.io/) with [LazyVim](https://www.lazyvim.org/) as a plugin manager is my default code editor. I use it in the [Ghostty terminal emulator](https://ghostty.org/) with the [Tmux terminal multiplexer](https://tmux.github.io/). Occasionally, I use [Zed](https://zed.dev/). I use [LazyGit](https://github.com/jesseduffield/lazygit) for Git.
<Toolbox tools={development} />