more misc packages

This commit is contained in:
Barrett Ruth 2026-02-12 00:20:14 -05:00
parent 844127d30f
commit 7ca12a38ae
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
7 changed files with 53 additions and 39 deletions

View file

@ -2,6 +2,7 @@
"blink.cmp": { "branch": "main", "commit": "4b18c32adef2898f95cdef6192cbd5796c1a332d" },
"cp.nvim": { "branch": "main", "commit": "029ea125b97320ff5c2884bf84bf5aa4e7077c79" },
"dial.nvim": { "branch": "master", "commit": "f2634758455cfa52a8acea6f142dcd6271a1bf57" },
"diffs.nvim": { "branch": "main", "commit": "330e2bc9b89ebcc52b77a9fa960541c0cfbca81d" },
"fzf-lua": { "branch": "main", "commit": "fb8c50ba62a0daa433b7ac2b78834f318322b879" },
"guard-collection": { "branch": "main", "commit": "ea1d770284473bc4976a787d61d5eb781a87d899" },
"guard.nvim": { "branch": "main", "commit": "addb8d2f40662b8b62d60dd7d18f503beb2332e7" },

View file

@ -1,6 +1,3 @@
---@type string|nil
local prev_gitsigns_signcol = nil
return {
{
'tpope/vim-fugitive',
@ -9,9 +6,10 @@ return {
{
dir = '~/dev/diffs.nvim',
'barrettruth/diffs.nvim',
enabled = true,
init = function()
vim.g.diffs = {
debug = false,
debug = true,
hide_prefix = true,
highlights = {
vim = {

View file

@ -2,7 +2,7 @@ return {
{
'nvim-treesitter/nvim-treesitter',
branch = 'main',
build = ':TSUpdate',
build = ':TSUpdate all',
lazy = false,
init = function()
vim.api.nvim_create_autocmd('FileType', {

View file

@ -45,13 +45,13 @@ bind -r Right resizep -R 5
bind -r Up resizep -U 5
bind -r Down resizep -D 5
unbind c; bind c neww -c '#{pane_current_path}'
unbind w; bind w neww -c '#{pane_current_path}'
unbind \'; bind \' splitw -hc '#{pane_current_path}'
unbind \-; bind \- splitw -vc '#{pane_current_path}'
unbind y; bind y if -F '#{pane_in_mode}' 'send q' 'copy-mode'
unbind /; bind / if -F '#{pane_in_mode}' 'send q' 'copy-mode ; send /'
unbind ?; bind ? if -F '#{pane_in_mode}' 'send q' 'copy-mode ; send ?'
unbind y; bind y if -F '#{pane_in_mode}' 'send -X cancel' 'copy-mode'
unbind /; bind / if -F '#{pane_in_mode}' 'send -X cancel' 'copy-mode ; send -X search-forward'
unbind ?; bind ? if -F '#{pane_in_mode}' 'send -X cancel' 'copy-mode ; send -X search-backward'
bind -T copy-mode-vi v send -X begin-selection
bind -T copy-mode-vi y send -X copy-pipe-and-cancel 'test -n "$WAYLAND_DISPLAY" && wl-copy || xclip -in -sel c'
@ -75,12 +75,12 @@ set-hook -g client-light-theme 'source $XDG_CONFIG_HOME/tmux/themes/daylight.con
set-hook -g client-dark-theme 'source $XDG_CONFIG_HOME/tmux/themes/midnight.conf'
run 'tmux source "$XDG_CONFIG_HOME/tmux/themes/${THEME:-midnight}.conf"'
unbind A; bind A run 'mux ai'
unbind C; bind C run 'mux code'
unbind R; bind R run 'mux run'
unbind T; bind T run 'mux term'
unbind G; bind G run 'mux git'
unbind M; bind M run 'mux misc'
unbind a; bind a run 'mux ai'
unbind c; bind c run 'mux code'
unbind r; bind r run 'mux run'
unbind t; bind t run 'mux term'
unbind g; bind g run 'mux git'
unbind m; bind m run 'mux misc'
set -g lock-after-time 300
set -g lock-command "pipes -p 2"