This commit is contained in:
Greg 2026-02-28 00:02:16 +02:00
parent 522cff152f
commit 394c43ed8d
3 changed files with 7 additions and 14 deletions

View file

@ -44,13 +44,8 @@ vim.opt.hlsearch = false -- do not highlight matches
vim.opt.ignorecase = true -- ignore case in searches by default vim.opt.ignorecase = true -- ignore case in searches by default
vim.opt.smartcase = true -- but make it case sensitive if an uppercase is entered vim.opt.smartcase = true -- but make it case sensitive if an uppercase is entered
-- Sync clipboard between OS and Neovim. vim.g.clipboard = "wl-copy"
-- Schedule the setting after `UiEnter` because it can increase startup-time. vim.opt.clipboard:append("unnamedplus")
-- Remove this option if you want your OS clipboard to remain independent.
-- See `:help 'clipboard'`
vim.schedule(function()
vim.opt.clipboard = "unnamedplus"
end)
-- Save undo history -- Save undo history
vim.opt.undofile = true vim.opt.undofile = true

View file

@ -19,8 +19,6 @@ smart_borders on
# gaps outer 0 # gaps outer 0
gaps top 10 gaps top 10
for_window [app_id="kitty_shell"] floating enable, move center
### Variables ### Variables
# #
@ -150,7 +148,7 @@ input "type:keyboard" {
bindsym --to-code $mod+Shift+q kill bindsym --to-code $mod+Shift+q kill
bindsym --to-code $mod+Space exec $menu bindsym --to-code $mod+Space exec $menu
bindsym --to-code $mod+Tab exec $windows bindsym --to-code $mod+Tab exec $windows
bindsym --to-code Shift+Space exec cliphist list | rofi -dmenu -P "" | cliphist decode | wl-copy bindsym --to-code Shift+Space exec ~/.scripts/clipboard.fish
bindsym --to-code $mod+Backspace exec ~/.scripts/power.fish bindsym --to-code $mod+Backspace exec ~/.scripts/power.fish
bindsym --to-code $mod+Apostrophe exec ~/.scripts/shot.fish bindsym --to-code $mod+Apostrophe exec ~/.scripts/shot.fish
@ -270,17 +268,17 @@ bindsym --to-code $mod+r mode "resize"
### Autostart ### Autostart
#
exec solaar --window=hide --battery-icons=solaar
exec udiskie -t exec udiskie -t
exec swaylock exec swaylock
exec tuxedo-control-center --tray exec tuxedo-control-center --tray
exec swaykbdd exec swaykbdd
exec wl-paste --primary --type text --watch cliphist store exec wl-paste --watch cliphist store
exec wl-paste -p --watch cliphist store
exec wl-paste --type image --watch cliphist store exec wl-paste --type image --watch cliphist store
### Idle configuration ### Idle configuration
#
exec ~/.scripts/idle.fish exec ~/.scripts/idle.fish

View file

@ -24,7 +24,7 @@ config.mouse_bindings = {
}, },
} }
config.font = wezterm.font({ family = "Iosevka Nerd Font", weight = "Regular", style = "Italic" }) config.font = wezterm.font({ family = "Iosevka Nerd Font", weight = "Regular", style = "Italic" })
config.font_size = 13 config.font_size = 12
config.use_fancy_tab_bar = false config.use_fancy_tab_bar = false
config.hide_tab_bar_if_only_one_tab = true config.hide_tab_bar_if_only_one_tab = true