Updated everything

This commit is contained in:
2024-12-04 09:57:01 -04:00
parent 3bb5928331
commit e933fd0be9
7 changed files with 136 additions and 161 deletions

View File

@@ -9,33 +9,36 @@
};
in {
programs.vscode = {
extensions = with plugins; [
# General
christian-kohler.npm-intellisense
denoland.vscode-deno
biomejs.biome
liamhammett.inline-parameters
yatki.vscode-surround
extensions = with plugins;
[
# General
christian-kohler.npm-intellisense
denoland.vscode-deno
liamhammett.inline-parameters
yatki.vscode-surround
# CSS
bradlc.vscode-tailwindcss
pranaygp.vscode-css-peek
stylelint.vscode-stylelint
zignd.html-css-class-completion
# CSS
bradlc.vscode-tailwindcss
pranaygp.vscode-css-peek
stylelint.vscode-stylelint
zignd.html-css-class-completion
# ServiceNow
#servicenow.now-vscode
arnoudkooicom.sn-scriptsync
# ServiceNow
#servicenow.now-vscode
arnoudkooicom.sn-scriptsync
# Svelte
svelte.svelte-vscode
# Svelte
svelte.svelte-vscode
# Tauri
tauri-apps.tauri-vscode
# Tauri
tauri-apps.tauri-vscode
# Testing
ms-playwright.playwright
];
# Testing
ms-playwright.playwright
]
++ [
pkgs.vscode-extensions.biomejs.biome
];
userSettings = {
"[javascript]"."editor.defaultFormatter" = "biomejs.biome";
"[typescript]"."editor.defaultFormatter" = "biomejs.biome";
@@ -52,6 +55,8 @@ in {
home.packages = with pkgs; [
deno
bun
nodejs
biome
];
}