Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ esac

[brew]:https://brew.sh/index
[fisher]:https://github.com/jorgebucaran/fisher
[ghostty]:https://ghostty.org/
[macism]:https://github.com/laishulu/macism

### Setup Neovim
Expand Down
12 changes: 12 additions & 0 deletions ghostty/config.ghostty
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
font-family = "HackGen35 Console NF"
font-feature = -dlig
font-size = 16

shell-integration-features = no-cursor
cursor-style = block
cursor-style-blink = false

macos-titlebar-style = hidden
macos-window-buttons = hidden
macos-titlebar-proxy-icon = hidden
macos-option-as-alt = true
3 changes: 3 additions & 0 deletions herdr/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ next_tab = "prefix+n"
previous_tab = "prefix+p"
split_vertical = "prefix+v"
split_horizontal = "prefix+s"

[experimental]
kitty_graphics = true
2 changes: 2 additions & 0 deletions init
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ def process() -> None:
install_items = [
# alacritty
SymlinkToConfig("alacritty/alacritty.toml", exist_ok=True),
# ghostty
SymlinkToConfig("ghostty/config.ghostty", exist_ok=True),

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Use Ghostty's recognized config filename

When Ghostty uses its default config discovery, it reads $XDG_CONFIG_HOME/ghostty/config, but SymlinkToConfig preserves the source basename and therefore installs this as $XDG_CONFIG_HOME/ghostty/config.ghostty. The bootstrap succeeds while Ghostty silently ignores every setting added here; rename the repository file to ghostty/config or use an explicit destination ending in /ghostty/config.

AGENTS.md reference: AGENTS.md:L18-L19

Useful? React with 👍 / 👎.

# git
SymlinkToConfig("git/ignore", exist_ok=True),
SymlinkToConfig("git/config", exist_ok=True),
Expand Down
Loading