install ruff
and ruff-lsp
This commit is contained in:
parent
e0657d4346
commit
285dca8f4a
1 changed files with 6 additions and 0 deletions
|
@ -28,6 +28,11 @@ rec {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
ruff
|
||||||
|
ruff-lsp
|
||||||
|
];
|
||||||
|
|
||||||
programs.vscode = {
|
programs.vscode = {
|
||||||
enable = true;
|
enable = true;
|
||||||
enableUpdateCheck = false;
|
enableUpdateCheck = false;
|
||||||
|
@ -273,6 +278,7 @@ rec {
|
||||||
"source.organizeImports" = "explicit";
|
"source.organizeImports" = "explicit";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
"ruff.path" = [ "${pkgs.ruff}/bin/ruff" ];
|
||||||
"python.terminal.activateEnvironment" = false;
|
"python.terminal.activateEnvironment" = false;
|
||||||
"python.terminal.activateEnvInCurrentTerminal" = false;
|
"python.terminal.activateEnvInCurrentTerminal" = false;
|
||||||
"[csharp]" = {
|
"[csharp]" = {
|
||||||
|
|
Loading…
Reference in a new issue