Compare commits

...

3 Commits

2 changed files with 20 additions and 6 deletions

View File

@ -79,16 +79,16 @@ in {
url = "https://drive.google.com/drive/folders/1L5OTbn5p3i7_Nc80hc5PztiEGHKwi-I4"; url = "https://drive.google.com/drive/folders/1L5OTbn5p3i7_Nc80hc5PztiEGHKwi-I4";
} }
{ {
name = "Electricy & Magnetism"; name = "Linear algebra and Differential equations";
url = "https://brightspace.tudelft.nl/d2l/le/content/681030/Home"; url = "https://brightspace.tudelft.nl/d2l/le/content/681028/Home";
} }
{ {
name = "Calculus & Linear Algebra"; name = "Electrical Energy Fundamentals";
url = "https://brightspace.tudelft.nl/d2l/le/content/681026/Home"; url = "https://brightspace.tudelft.nl/d2l/le/content/681016/Home";
} }
{ {
name = "Digital Systems B"; name = "IP 2";
url = "https://brightspace.tudelft.nl/d2l/home/722657"; url = "https://brightspace.tudelft.nl/d2l/le/content/681022/Home";
} }
]; ];
} }

View File

@ -24,6 +24,9 @@ in {
# Systemverilog # Systemverilog
unstable.svls unstable.svls
# Assembly
unstable.asm-lsp
# Nixos # Nixos
unstable.nil unstable.nil
unstable.nixpkgs-fmt unstable.nixpkgs-fmt
@ -73,6 +76,11 @@ in {
command = "svls"; command = "svls";
}; };
# Systemverilog
language-server.asm = {
command = "asm-lsp";
};
# Latex # Latex
language-server.texlab = { language-server.texlab = {
config = { config = {
@ -145,6 +153,12 @@ in {
name = "verilog"; name = "verilog";
language-servers = [ "svls" ]; language-servers = [ "svls" ];
} }
{
name = "asm";
scope = "source.s";
language-servers = [ "asm" ];
file-types = [ "s" "S" ];
}
{ {
name = "markdown"; name = "markdown";
auto-format = true; auto-format = true;