qenya/vscode: Configure Ruby support & alphabetise extensions
This commit is contained in:
parent
f6dedeea79
commit
165c179b3f
1 changed files with 16 additions and 10 deletions
|
@ -13,18 +13,19 @@ in
|
||||||
enableExtensionUpdateCheck = false;
|
enableExtensionUpdateCheck = false;
|
||||||
enableUpdateCheck = false;
|
enableUpdateCheck = false;
|
||||||
extensions = with pkgs.vscode-extensions; [
|
extensions = with pkgs.vscode-extensions; [
|
||||||
charliermarsh.ruff
|
|
||||||
dbaeumer.vscode-eslint
|
|
||||||
eamodio.gitlens
|
|
||||||
golang.go
|
|
||||||
jdinhlife.gruvbox
|
|
||||||
jnoortheen.nix-ide
|
|
||||||
matangover.mypy
|
|
||||||
mkhl.direnv
|
|
||||||
ms-python.black-formatter
|
ms-python.black-formatter
|
||||||
ms-python.python
|
mkhl.direnv
|
||||||
rust-lang.rust-analyzer
|
dbaeumer.vscode-eslint
|
||||||
|
golang.go
|
||||||
|
eamodio.gitlens
|
||||||
|
jdinhlife.gruvbox
|
||||||
vadimcn.vscode-lldb
|
vadimcn.vscode-lldb
|
||||||
|
matangover.mypy
|
||||||
|
jnoortheen.nix-ide
|
||||||
|
ms-python.python
|
||||||
|
shopify.ruby-lsp
|
||||||
|
charliermarsh.ruff
|
||||||
|
rust-lang.rust-analyzer
|
||||||
];
|
];
|
||||||
userSettings = {
|
userSettings = {
|
||||||
"css.format.spaceAroundSelectorSeparator" = true;
|
"css.format.spaceAroundSelectorSeparator" = true;
|
||||||
|
@ -81,6 +82,11 @@ in
|
||||||
"ruff.nativeServer" = "on";
|
"ruff.nativeServer" = "on";
|
||||||
"ruff.path" = [ "${pkgs.ruff}/bin/ruff" ];
|
"ruff.path" = [ "${pkgs.ruff}/bin/ruff" ];
|
||||||
"mypy.dmypyExecutable" = "${pkgs.mypy}/bin/dmypy";
|
"mypy.dmypyExecutable" = "${pkgs.mypy}/bin/dmypy";
|
||||||
|
|
||||||
|
"[ruby]" = {
|
||||||
|
"editor.formatOnSave" = true;
|
||||||
|
"editor.formatOnType" = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue