Stylua formatting pass

This commit is contained in:
2025-12-22 14:40:40 +00:00
parent 4263e3ccef
commit bb09e987b0
9 changed files with 70 additions and 53 deletions

View File

@@ -13,14 +13,14 @@ return {
preset = "super-tab",
},
appearance = {
nerd_font_variant = "mono"
nerd_font_variant = "mono",
},
completion = { documentation = { auto_show = true } },
sources = {
default = { "lsp", "path", "snippets", "buffer" },
},
fuzzy = { implementation = "prefer_rust_with_warning" }
fuzzy = { implementation = "prefer_rust_with_warning" },
},
opts_extend = { "sources.default" }
}
opts_extend = { "sources.default" },
},
}

View File

@@ -34,7 +34,10 @@ return { -- Non programming quality of life utilities go here
path = fallback_path,
})
vim.notify("Obsidian: 'Work_Notes' not found. Using fallback path.", vim.log.levels.WARN)
vim.notify(
"Obsidian: 'Work_Notes' not found. Using fallback path.",
vim.log.levels.WARN
)
end
return {

View File

@@ -15,7 +15,7 @@ return {
for _, map in ipairs(lsp_keys) do
vim.keymap.set("n", map[1], map[2], {
buffer = event.buf,
desc = "LSP: " .. map.desc
desc = "LSP: " .. map.desc,
})
end
@@ -55,6 +55,6 @@ return {
})
end,
},
{ "fladson/vim-kitty", ft = "kitty" },
{ "fladson/vim-kitty", ft = "kitty" },
{ "scallop-lang/vim-scallop", ft = "scallop" },
}

View File

@@ -1,5 +1,5 @@
return { -- Mini is so varied it's hard to categorise. So i dumped my mini installs here
{ -- Collection of various small independent plugins/modules
{ -- Collection of various small independent plugins/modules
"echasnovski/mini.nvim",
config = function()
-- Better Around/Inside textobjects

View File

@@ -1,5 +1,5 @@
return { -- UI components and other visual elements are declared here
{ -- Theme
{ -- Theme
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
@@ -133,5 +133,5 @@ return { -- UI components and other visual elements are declared here
config = function()
require("rainbow-delimiters.setup").setup()
end,
}
},
}

View File

@@ -23,7 +23,7 @@ return { -- General programming utilities go here
},
},
-- Privilege escalation plugin
{ "lambdalisue/suda.vim", event = "VeryLazy" },
{ "lambdalisue/suda.vim", event = "VeryLazy" },
{
"folke/trouble.nvim",
cmd = { "Trouble" },