From 786bc212a5bf98f33a2c1acebb1d8515609b663d Mon Sep 17 00:00:00 2001 From: "Guilhem C." Date: Fri, 10 Apr 2026 13:25:13 +0200 Subject: [PATCH 1/2] feat(claude): allow WebFetch for ghostty.org Add Ghostty docs domain to the permission allow list so Claude Code can fetch reference material from the Ghostty website. --- dot_claude/settings.json | 1 + 1 file changed, 1 insertion(+) diff --git a/dot_claude/settings.json b/dot_claude/settings.json index 3b47abf..7b4ad55 100644 --- a/dot_claude/settings.json +++ b/dot_claude/settings.json @@ -416,6 +416,7 @@ "WebFetch(domain:docs.gitlab.com)", "WebFetch(domain:graphite.dev)", "WebFetch(domain:handbook.gitlab.com)", + "WebFetch(domain:ghostty.org)", "WebFetch(domain:lazy.folke.io)", "WebFetch(domain:neovim.io)", "WebFetch(domain:www.jetbrains.com)", From ddf8bdc37c12da9779d0fbc19c31743cebf4e0c5 Mon Sep 17 00:00:00 2001 From: "Guilhem C." Date: Sat, 11 Apr 2026 20:37:23 +0200 Subject: [PATCH 2/2] fix(tmux): swap h/v split bindings to match direction names bind v now splits vertically (horizontal layout) and bind h splits horizontally (vertical layout), matching the intuitive meaning of each letter. --- dot_config/tmux/tmux.conf.tmpl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dot_config/tmux/tmux.conf.tmpl b/dot_config/tmux/tmux.conf.tmpl index 3995922..42f3b9c 100644 --- a/dot_config/tmux/tmux.conf.tmpl +++ b/dot_config/tmux/tmux.conf.tmpl @@ -24,9 +24,9 @@ bind r source-file ~/.config/tmux/tmux.conf unbind c bind t new-window unbind '"' -bind h split-window -h -c '#{pane_current_path}' +bind v split-window -h -c '#{pane_current_path}' unbind % -bind v split-window -v -c '#{pane_current_path}' +bind h split-window -v -c '#{pane_current_path}' #bind-key h select-pane -L bind-key j select-pane -D