Skip to content

Commit

Permalink
feat: add direnv and dotnet vscode extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
squirmy committed Nov 24, 2023
1 parent a9bd44b commit 9752ca0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions home/vscode.nix
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@ in {
programs.vscode.enableExtensionUpdateCheck = false;
programs.vscode.mutableExtensionsDir = false;

# The extention id's can sometimes contain uppercase characters.
# You'll need to make all letters lowercase for them to work.
programs.vscode.extensions = with marketplace; [
jnoortheen.nix-ide
dbaeumer.vscode-eslint
Expand All @@ -71,6 +73,9 @@ in {
bradlc.vscode-tailwindcss
github.vscode-github-actions
eamodio.gitlens
mkhl.direnv
ms-dotnettools.csharp
ms-dotnettools.vscode-dotnet-runtime
];

programs.vscode.userSettings = {
Expand Down Expand Up @@ -136,5 +141,8 @@ in {
"shellcheck.executablePath" = "${pkgs.shellcheck.bin}/bin/shellcheck";

"svelte.ask-to-enable-ts-plugin" = false;

# annoyances
"git.openRepositoryInParentFolders" = "never";
};
}

0 comments on commit 9752ca0

Please sign in to comment.