add more languages

This commit is contained in:
2025-10-15 19:51:33 -05:00
parent 50ffcb48e2
commit bcc5185ef4

View File

@@ -1,11 +1,17 @@
{ pkgs, ... }: {
{ ... }: {
plugins = {
lsp = {
enable = true;
servers = {
#hyprlang
hyprls.enable = true;
#html
html.enable = true;
#js/typescript
ts_ls.enable = true;
#css
cssls.enable = true;
#c/c++
ccls.enable = true;
#nix
@@ -14,10 +20,24 @@
pyright.enable = true;
#bash
bashls.enable = true;
#css
cssls.enable = true;
#glsl
glsl_analyzer.enable = true;
#qml
qmlls.enable = true;
#ai
/*lsp_ai = {
enable = true;
settings = {
memory.file_store = {};
models = {
model1 = {
type = "ollama";
model = "llama3.2";
};
};
chat = {};
};
};*/
};