Compare commits

...

2 commits

Author SHA1 Message Date
78555ac182 mod (nvim): set clipboard 2025-07-13 02:34:09 -04:00
4a9e83424f add: fuzzel config 2025-07-13 02:32:05 -04:00
3 changed files with 8 additions and 1 deletions

View file

@ -0,0 +1,4 @@
[main]
icons-enables = yes
show-actions = yes
terminal = $TERMINAL -e

View file

@ -75,7 +75,7 @@ binds {
Mod+Escape { spawn "wlogout"; }
Mod+Return { spawn "ghostty"; }
Mod+Shift+Return { spawn "wofi"; }
Mod+Shift+Return { spawn "fuzzel"; }
XF86AudioRaiseVolume { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "1+";}
XF86AudioLowerVolume { spawn "wpctl" "set-volume" "@DEFAULT_AUDIO_SINK@" "1-";}

View file

@ -4,6 +4,9 @@ vim.opt.relativenumber = false
-- Tab
-- Clipboard
vim.opt.clipboard = "unnamedplus"
-- Colors
vim.opt.termguicolors = true
vim.cmd.colorscheme("sonokai")