chore(nvim): Navbuddy UI enhancements, plugins removed, and code cleanup

- Navbuddy: size increased
- Navbuddy: added keybindings: o -> preview, f -> search
- LSP: disable inlayHints by default
- Removed 2 plugins: bigfile, obsidian
This commit is contained in:
Pratik Tripathy
2024-12-28 00:33:00 +05:30
parent c23baf7b2e
commit a6dddb569e
3 changed files with 49 additions and 117 deletions

View File

@@ -90,39 +90,4 @@ return {
dir = vim.fn.expand(vim.fn.stdpath("config") .. "/sessions/"),
},
},
-- Speedup loading large files by disabling some plugins
{
"LunarVim/bigfile.nvim",
cond = require("config.util").is_not_vscode(),
lazy = true,
opts = {
filesize = 2, --2MiB
pattern = "*",
features = {
"indent_blankline",
"lsp",
"syntax",
"treesitter",
},
},
},
{
"epwalsh/obsidian.nvim",
version = "*",
dependencies = {
"nvim-lua/plenary.nvim",
},
cond = require("config.util").is_not_vscode(),
ft = "markdown",
opts = {
workspaces = {
{ name = "personal", path = "~/Code/Notes" },
},
completion = {
nvim_cmp = true,
},
},
},
}