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