mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 11:35:41 +00:00
feat(nixvim): add lsp
This commit is contained in:
parent
0185d2e28f
commit
2b4de05b95
2 changed files with 13 additions and 0 deletions
|
@ -28,5 +28,6 @@
|
|||
./plugins/web-devicons.nix
|
||||
./plugins/wakatime.nix
|
||||
./plugins/which-key.nix
|
||||
./plugins/lsp.nix
|
||||
];
|
||||
}
|
||||
|
|
12
home/toast/programs/nixvim/plugins/lsp.nix
Normal file
12
home/toast/programs/nixvim/plugins/lsp.nix
Normal 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;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue