feat(nvf): add misc plugs

This commit is contained in:
Mohammad Rafiq 2025-03-03 12:15:27 +08:00
parent b268832bf9
commit a6b9bb97c7

View file

@ -21,6 +21,8 @@ _: {
# signcolumn = "no"; # signcolumn = "no";
}; };
syntaxHighlighting = true;
# Built-Ins # Built-Ins
autocomplete.blink-cmp.enable = true; autocomplete.blink-cmp.enable = true;
autocomplete.blink-cmp.setupOpts.signature.enabled = true; autocomplete.blink-cmp.setupOpts.signature.enabled = true;
@ -29,6 +31,7 @@ _: {
comments.comment-nvim.enable = true; comments.comment-nvim.enable = true;
formatter.conform-nvim.enable = true; formatter.conform-nvim.enable = true;
dashboard.alpha.enable = true; dashboard.alpha.enable = true;
session.nvim-session-manager.enable = true;
# Filetree # Filetree
filetree.nvimTree = { filetree.nvimTree = {
@ -47,6 +50,9 @@ _: {
# - allow me to move files around with vim bindings # - allow me to move files around with vim bindings
}; };
# SyntaxHighlighting
treesitter.fold = true;
# Fuzzy Finding # Fuzzy Finding
fzf-lua = { fzf-lua = {
enable = true; enable = true;
@ -92,6 +98,11 @@ _: {
# Markdown # Markdown
markdown.extensions.render-markdown-nvim.enable = true; markdown.extensions.render-markdown-nvim.enable = true;
# Nix
nix.lsp.options = {
settings.nix.flake.autoArchive = true;
};
# Rust # Rust
rust.crates.enable = true; rust.crates.enable = true;
@ -114,9 +125,13 @@ _: {
}; };
mini = { mini = {
animate.enable = true; # animate.enable = true;
statusline.enable = true; statusline.enable = true;
surround.enable = true; surround.enable = true;
}; };
notes = {
obsidian.enable = true;
};
}; };
} }