diff --git a/.config/nvim/lua/plugins/editor/base.lua b/.config/nvim/lua/plugins/editor/base.lua index 73a197d..ea4c800 100644 --- a/.config/nvim/lua/plugins/editor/base.lua +++ b/.config/nvim/lua/plugins/editor/base.lua @@ -8,11 +8,9 @@ return { { "smjonas/live-command.nvim", event = "BufRead", opts = {} }, { "nguyenvukhang/nvim-toggler", event = { "BufReadPost" }, opts = {} }, { - "ecthelionvi/NeoComposer.nvim", - dependencies = { "kkharji/sqlite.lua" }, - event = "VeryLazy", - opts = {}, - enabled = false, -- clashes with keybinds + "chrisgrieser/nvim-recorder", + dependencies = "rcarriga/nvim-notify", -- optional + opts = {}, -- required even with default settings, since it calls `setup()` }, { -- find and replace diff --git a/.config/nvim/lua/plugins/editor/fidget.lua b/.config/nvim/lua/plugins/editor/fidget.lua index af1544a..e8afc1f 100644 --- a/.config/nvim/lua/plugins/editor/fidget.lua +++ b/.config/nvim/lua/plugins/editor/fidget.lua @@ -16,8 +16,8 @@ return { notification = { configs = { default = { - name = "󱞽 Notifications", - icon = "󰂚", + name = "", + icon = "", icon_style = "Special", annote_style = "DiagnosticInfo", debug_style = "Comment", diff --git a/.config/nvim/lua/plugins/editor/visuals.lua b/.config/nvim/lua/plugins/editor/visuals.lua index ff9bab6..11af43b 100644 --- a/.config/nvim/lua/plugins/editor/visuals.lua +++ b/.config/nvim/lua/plugins/editor/visuals.lua @@ -36,10 +36,11 @@ return { tint.setup({ transforms = { - transforms.tint_with_threshold(-30, colors.background, 100), - transforms.saturate(0.25), + transforms.tint_with_threshold(-40, colors.background, 100), + transforms.saturate(0.4), }, highlight_ignore_patterns = { + "NvimTree*", "IndentBlankline*", "Ibl*", "Whitespace", diff --git a/.config/nvim/spell/en.utf-8.add b/.config/nvim/spell/en.utf-8.add index 4c41dc8..011d79d 100644 --- a/.config/nvim/spell/en.utf-8.add +++ b/.config/nvim/spell/en.utf-8.add @@ -1196,3 +1196,6 @@ NextButton initialValue and WezTerm +interestPaymentFrequency +Rentefrekvens +Listbox diff --git a/.config/nvim/spell/en.utf-8.add.spl b/.config/nvim/spell/en.utf-8.add.spl index 5f66ac4..677a6b4 100644 Binary files a/.config/nvim/spell/en.utf-8.add.spl and b/.config/nvim/spell/en.utf-8.add.spl differ diff --git a/.wezterm.lua b/.wezterm.lua index 8c980aa..76a8b98 100644 --- a/.wezterm.lua +++ b/.wezterm.lua @@ -233,34 +233,34 @@ config.keys = { -- TODO: find better keys for splitting panes { key = "v", - mods = "CTRL|SHIFT", + mods = "CMD, CTRL|SHIFT", action = wezterm.action.SplitHorizontal({ domain = "CurrentPaneDomain" }), }, { key = "s", - mods = "CTRL|SHIFT", + mods = "CMD, CTRL|SHIFT", action = wezterm.action.SplitVertical({ domain = "CurrentPaneDomain" }), }, { key = "l", - mods = "CTRL|SHIFT", - action = wezterm.action.DisableDefaultAssignment, + mods = "CMD", + action = wezterm.action.ActivatePaneDirection("Right"), + }, + { + key = "h", + mods = "CMD", + action = wezterm.action.ActivatePaneDirection("Left"), + }, + { + key = "j", + mods = "CMD", + action = wezterm.action.ActivatePaneDirection("Down"), + }, + { + key = "k", + mods = "CMD", + action = wezterm.action.ActivatePaneDirection("Up"), }, - -- { - -- key = "h", - -- mods = "CTRL|SHIFT", - -- action = wezterm.action.ActivatePaneDirection("Left"), - -- }, - -- { - -- key = "j", - -- mods = "CTRL|SHIFT", - -- action = wezterm.action.ActivatePaneDirection("Down"), - -- }, - -- { - -- key = "k", - -- mods = "CTRL|SHIFT", - -- action = wezterm.action.ActivatePaneDirection("Up"), - -- }, { key = "RightArrow", mods = "CTRL|SHIFT",