added support for c, nim, and sage
This commit is contained in:
parent
2bd0b967cb
commit
54ecb45922
2 changed files with 18 additions and 1 deletions
|
|
@ -129,6 +129,11 @@
|
|||
auto-format = false; # my python is beautiful ^_^
|
||||
rulers = [80];
|
||||
}
|
||||
{
|
||||
name = "c";
|
||||
formatter.command = "${pkgs.clang-tools}/bin/clang-format";
|
||||
language-servers = ["clangd"];
|
||||
}
|
||||
];
|
||||
|
||||
language-server = {
|
||||
|
|
@ -138,6 +143,10 @@
|
|||
nixd = {
|
||||
command = "${pkgs.nixd}/bin/nixd";
|
||||
};
|
||||
# clangd for C
|
||||
clangd = {
|
||||
command = "${pkgs.clang-tools}/bin/clangd";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue