mirror of
https://github.com/Cian-H/my_nvim_config.git
synced 2025-12-22 20:21:57 +00:00
Stylua formatting pass
This commit is contained in:
@@ -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" },
|
||||
},
|
||||
}
|
||||
|
||||
@@ -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 {
|
||||
|
||||
@@ -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" },
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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,
|
||||
}
|
||||
},
|
||||
}
|
||||
|
||||
@@ -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" },
|
||||
|
||||
Reference in New Issue
Block a user