nvim tweaks

This commit is contained in:
Henrik Bakken
2025-04-07 09:41:53 +02:00
parent f441dfb4ea
commit af9874c1d0
+9 -3
View File
@@ -928,6 +928,12 @@ local function makespec_snacks()
}, },
toggle = { enabled = true }, toggle = { enabled = true },
words = { enabled = true }, words = { enabled = true },
styles = {
lazygit = {
width = 0,
height = 0,
},
},
}, },
-- stylua: ignore -- stylua: ignore
keys = { keys = {
@@ -1148,8 +1154,8 @@ local function makespec_flash()
jump = { autojump = true }, jump = { autojump = true },
char_actions = function(motion) char_actions = function(motion)
return { return {
[";"] = "right", -- set to `right` to always go right [";"] = "next", -- set to `right` to always go right
[","] = "left", -- set to `left` to always go left [","] = "prev", -- set to `left` to always go left
[motion:lower()] = "next", [motion:lower()] = "next",
[motion:upper()] = "prev", [motion:upper()] = "prev",
} }
@@ -1329,7 +1335,7 @@ local function makespec_noice()
["vim.lsp.util.convert_input_to_markdown_lines"] = true, ["vim.lsp.util.convert_input_to_markdown_lines"] = true,
["vim.lsp.util.stylize_markdown"] = true, ["vim.lsp.util.stylize_markdown"] = true,
}, },
signature = { enabled = true, auto_open = { enabled = true, throttle = 50 } }, signature = { enabled = true, auto_open = { enabled = false, throttle = 50 } },
}, },
presets = { presets = {
command_palette = true, command_palette = true,