feat(nixvim): add lsp

This commit is contained in:
lightly-toasted 2025-08-03 21:43:10 +09:00
parent 0185d2e28f
commit 2b4de05b95
2 changed files with 13 additions and 0 deletions

View file

@ -28,5 +28,6 @@
./plugins/web-devicons.nix ./plugins/web-devicons.nix
./plugins/wakatime.nix ./plugins/wakatime.nix
./plugins/which-key.nix ./plugins/which-key.nix
./plugins/lsp.nix
]; ];
} }

View file

@ -0,0 +1,12 @@
{
programs.nixvim.plugins.lsp = {
enable = true;
servers = {
lua_ls.enable = true;
ts_ls.enable = true;
pyright.enable = true;
tailwindcss.enable = true;
nil_ls.enable = true;
};
};
}