mirror of
https://github.com/akr2002/nv.git
synced 2024-11-09 18:49:45 +00:00
12 lines
202 B
Nix
12 lines
202 B
Nix
{pkgs, ...}: {
|
|
extraPlugins = with pkgs.vimPlugins; [
|
|
neodev-nvim
|
|
];
|
|
|
|
extraConfigLua = ''
|
|
require("neodev").setup({
|
|
library = { plugins = {"neotest"}, types = true},
|
|
})
|
|
'';
|
|
}
|
|
|