diff --git a/home/common/nixvim.nix b/home/common/nixvim.nix index de98a7c..3e25c12 100644 --- a/home/common/nixvim.nix +++ b/home/common/nixvim.nix @@ -1,4 +1,5 @@ { config, pkgs, nixvim, ... }: { + home.packages = with pkgs; [ tree-sitter fd ]; programs = { ripgrep.enable = true; nixvim = { @@ -16,6 +17,10 @@ key = "e"; action = ":Neotree"; } + { + key = "o"; + action = ":Obsidian"; + } { key = "gg"; action = ":LazyGit"; @@ -36,6 +41,7 @@ enable = true; theme = "dashboard"; }; + blink-cmp.enable = true; bufferline.enable = true; cmp.enable = true; cmp-buffer.enable = true;