mirror of
https://github.com/pratiktri/dotfiles.git
synced 2026-02-04 08:41:43 +05:30
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:
@@ -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,
|
||||
},
|
||||
},
|
||||
},
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user