Compare commits

..

6 Commits

Author SHA1 Message Date
tgrosinger 0f834ddc0d 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-03 11:03:17 -07:00
tgrosinger 1396439bdc 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-03 11:02:29 -07:00
tgrosinger 2c9ed6fba5 Pi: Install 2026-07-03 11:01:25 -07:00
tgrosinger e94d2ab110 Neovim: Install updates 2026-07-03 10:21:57 -07:00
tgrosinger 704e955cfd Neovim: Show hidden and ignored files in snacks explorer by default 2026-07-03 09:15:13 -07:00
tgrosinger a1b5b50655 Ghostty: Switch from Alacritty 2026-07-03 09:02:41 -07:00
2 changed files with 5 additions and 17 deletions
-17
View File
@@ -1,17 +0,0 @@
-- Restore <C-e> to its default scroll behavior in Octo review/PR buffers.
-- Octo binds <C-e> to copy_sha, which errors "Not a pull request buffer" in
-- diff buffers instead of scrolling. Blanking the lhs makes Octo skip the
-- mapping (see octo.utils.is_blank / apply_mappings), so <C-e> scrolls again.
return {
"pwntester/octo.nvim",
opts = {
mappings = {
review_diff = {
copy_sha = { lhs = "" },
},
pull_request = {
copy_sha = { lhs = "" },
},
},
},
}
+5
View File
@@ -48,6 +48,11 @@ bind-key -T copy-mode-vi 'C-l' select-pane -R
set -g allow-passthrough on set -g allow-passthrough on
set -as terminal-features 'xterm-ghostty*:RGB' set -as terminal-features 'xterm-ghostty*:RGB'
# Extended key reporting (requires tmux 3.5+).
# Apply with: tmux kill-server && tmux
set -g extended-keys on
set -g extended-keys-format csi-u
# change windows # change windows
bind -n S-Right next-window bind -n S-Right next-window
bind -n S-Left previous-window bind -n S-Left previous-window