Initial commit, copied setup from nixos config

This commit is contained in:
EsVagy42 2025-03-02 13:27:22 +00:00
commit 477100a830
6 changed files with 314 additions and 0 deletions

14
config/lsp.nix Normal file
View file

@ -0,0 +1,14 @@
{
plugins = {
lsp = {
enable = true;
servers = {
clangd.enable = true;
bashls.enable = true;
nixd.enable = true;
marksman.enable = true;
lua_ls.enable = true;
};
};
};
}