misc tweaks

This commit is contained in:
Barrett Ruth 2026-02-13 13:19:26 -05:00
parent 6e7605a562
commit e671275e26
Signed by: barrett
GPG key ID: A6C96C9349D2FC81
6 changed files with 16 additions and 10 deletions

View file

@ -100,6 +100,7 @@ bind = ALT, U, layoutmsg, swapprev
bind = ALT CTRL, Z, exec, hypr pull $BROWSER
bind = ALT CTRL, T, exec, hypr pull $TERMINAL
bind = ALT CTRL, V, exec, hypr pull vesktop
bind = ALT CTRL, S, exec, hypr pull signal-desktop
bind = ALT CTRL, Y, exec, hypr pull sioyek
bind = ALT SHIFT, T, exec, hypr spawnfocus --ws 1 $TERMINAL
@ -108,6 +109,7 @@ bind = ALT SHIFT, F, togglefloating
bind = ALT SHIFT, Q, exec, hypr exit
bind = ALT SHIFT, R, exec, hyprctl reload && notify-send -u low 'hyprland reloaded'
bind = ALT SHIFT, V, exec, hypr spawnfocus --ws 5 vesktop
bind = ALT SHIFT, S, exec, hypr spawnfocus --ws 6 signal-desktop
bind = ALT SHIFT, Y, exec, hypr spawnfocus --ws 3 sioyek
bind = , XF86Tools, submap, scripts

View file

@ -5,11 +5,11 @@ return {
},
{
dir = '~/dev/diffs.nvim',
'barrettruth/diffs.nvim',
enabled = true,
init = function()
vim.g.diffs = {
debug = true,
-- debug = '/tmp/diffs.log',
filetypes = { 'fugitive', 'git', 'gitcommit', 'diff' },
hide_prefix = true,
highlights = {
vim = {

View file

@ -1,7 +1,7 @@
return {
'nvimdev/guard.nvim',
dependencies = {
{ 'nvimdev/guard-collection' },
{ dir = '~/dev/guard-collection', 'nvimdev/guard-collection' },
},
init = function()
vim.g.guard_config = {

View file

@ -50,8 +50,8 @@ unbind \'; bind \' splitw -hc '#{pane_current_path}'
unbind \-; bind \- splitw -vc '#{pane_current_path}'
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'
unbind /; bind / if -F '#{pane_in_mode}' { send -X cancel } { copy-mode ; command-prompt -p '/' { send -X search-forward -- '%%' } }
unbind ?; bind ? if -F '#{pane_in_mode}' { send -X cancel } { copy-mode ; command-prompt -p '?' { 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'