feat(home): add uv.nvim plugin to nvf vim config

This commit is contained in:
Mohammad Rafiq 2025-06-22 14:55:00 +08:00
parent ce825fdc6c
commit e0202a9f87
No known key found for this signature in database

View file

@ -7,6 +7,16 @@ in
persistDirs = singleton ".local/share/nvf";
programs.nvf.enable = true;
programs.nvf.settings.vim = {
lazy.plugins = {
"uv.nvim" = {
# TODO: upstream this
package = pkgs.vimPlugins.uv-nvim;
setupModule = "uv";
setupOpts.picker_integration = true;
event = [ "BufEnter" ];
after = "print('uv.nvim loaded')";
};
};
hideSearchHighlight = true;
syntaxHighlighting = true;
telescope.enable = true;