neovim new config

This commit is contained in:
afoucaultc 2026-08-19 14:54:41 +02:00
parent 763bbf5cc1
commit 315e988734
50 changed files with 739 additions and 52 deletions

View file

@ -0,0 +1,19 @@
{ ... }:
{
programs.nixvim = {
plugins = {
lsp = {
enable = true;
servers = {
nil_ls.enable = true;
lua-ls = {
enable = true;
settings.Lua.diagnostics.globals = [ "vim" ];
};
texlab.enable = true;
pyright.enable = true;
};
};
};
};
}