Compare commits

..

11 Commits

Author SHA1 Message Date
tgrosinger b2aae384e0 Mise: Install global updates 2026-07-07 09:42:37 -07:00
tgrosinger 6905cdf3be Tmux: Open session switcher after killing session 2026-07-07 09:42:26 -07:00
tgrosinger 3c6afb9d3a Sway: Parameterize term 2026-07-07 09:15:22 -07:00
tgrosinger 2192fa23f0 Tmux: Switch to previous session after killing 2026-07-07 09:14:02 -07:00
tgrosinger e232d1ec2e Neovim: Fix <C-e> hotkey in Octo buffers 2026-07-07 09:14:00 -07:00
tgrosinger 15f8e17b57 Neovim: Enable claude-review and disable code-review
I was not really using code-review and the keybindings conflicted with
my new claude-review extension. Claude review is installed from a local
directory.
2026-07-07 09:13:43 -07:00
tgrosinger 41c5a6c37d Claude: Remove pr-walkthrough skill
The skill I am using for pr-walkthrough now lives in the claude-review
repo and has been adjusted to output structured json that can be viewed
in my Neovim plugin.
2026-07-07 09:13:39 -07:00
tgrosinger 1510881558 Pi: Install 2026-07-07 09:13:36 -07:00
tgrosinger 13a252517a Neovim: Install updates 2026-07-07 09:13:33 -07:00
tgrosinger b2033a7b2d Neovim: Show hidden and ignored files in snacks explorer by default 2026-07-07 09:13:30 -07:00
tgrosinger adbac68c9e Ghostty: Install 2026-07-07 09:13:13 -07:00
3 changed files with 5 additions and 3 deletions
+1 -1
View File
@@ -18,7 +18,7 @@ pnpm = "latest"
"npm:@anthropic-ai/sandbox-runtime" = "latest" "npm:@anthropic-ai/sandbox-runtime" = "latest"
"npm:typescript-language-server" = "latest" "npm:typescript-language-server" = "latest"
"npm:typescript" = "latest" "npm:typescript" = "latest"
"github:Satty-org/Satty" = "0.20.1" "github:Satty-org/Satty" = "0.21.1"
"github:DarthSim/overmind" = "latest" "github:DarthSim/overmind" = "latest"
"github:F1bonacc1/process-compose" = "latest" "github:F1bonacc1/process-compose" = "latest"
"github:modem-dev/hunk" = "latest" "github:modem-dev/hunk" = "latest"
+1 -1
View File
@@ -11,7 +11,7 @@ set $down j
set $up k set $up k
set $right l set $right l
# Your preferred terminal emulator # Your preferred terminal emulator
set $term ghostty set $term alacritty
# Your preferred application launcher # Your preferred application launcher
# Note: pass the final command to swaymsg so that the resulting window can be opened # Note: pass the final command to swaymsg so that the resulting window can be opened
# on the original workspace that the command was run on. # on the original workspace that the command was run on.
+3 -1
View File
@@ -4,6 +4,8 @@ set-option -g status-interval 2
set-option -g renumber-windows on set-option -g renumber-windows on
set-option -g history-limit 10000 set-option -g history-limit 10000
set -s escape-time 0 set -s escape-time 0
set-option -g detach-on-destroy off
set-hook -g session-closed 'choose-tree -Zs'
### Fix supporting italics ### Fix supporting italics
set -g default-terminal "tmux-256color" set -g default-terminal "tmux-256color"
@@ -46,7 +48,7 @@ bind-key -T copy-mode-vi 'C-l' select-pane -R
# Improved support for Claude Code CLI. # Improved support for Claude Code CLI.
set -g allow-passthrough on set -g allow-passthrough on
set -as terminal-features 'xterm-ghostty*:RGB' set -as terminal-features 'alacritty*:RGB'
# change windows # change windows
bind -n S-Right next-window bind -n S-Right next-window