9 lines
141 B
Nix
9 lines
141 B
Nix
{ inputs, ... }: {
|
|
programs.nixvim.plugins = {
|
|
lsp = {
|
|
enable = true;
|
|
|
|
servers = { pyright.enable = true; };
|
|
};
|
|
};
|
|
}
|