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