Added Markdown lsp

Main
Johannes Hendrik Gerard van der Weide 2024-02-23 19:00:17 +01:00
parent 64510423fd
commit 1e7717014b
1 changed files with 8 additions and 0 deletions

View File

@ -5,16 +5,24 @@
# Nix # Nix
nixd = { nixd = {
enable = true; enable = true;
autostart = true;
}; };
# Rust # Rust
rust-analyzer = { rust-analyzer = {
enable = true; enable = true;
autostart = true;
installRustc = true; installRustc = true;
installCargo = true; installCargo = true;
}; };
# Godot # Godot
gdscript = { gdscript = {
enable = true; enable = true;
autostart = true;
};
# Markdown
marksman = {
enable = true;
autostart = true;
}; };
}; };
}; };