From cb931b972ff7c276a6aeabc6fcdae209f22981e5 Mon Sep 17 00:00:00 2001 From: Matthieu Morin Date: Mon, 1 Apr 2024 15:38:23 +0200 Subject: [PATCH] enable prettier, continue autocomplete tab with ollama --- vscodium/settings.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/vscodium/settings.json b/vscodium/settings.json index 7481075..661a1e6 100644 --- a/vscodium/settings.json +++ b/vscodium/settings.json @@ -20,7 +20,7 @@ "typescript.tsserver.experimental.enableProjectDiagnostics": false, // <<< Telemetry >>> - // === OS and files === + // === OS and files === "terminal.integrated.splitCwd": "workspaceRoot", "terminal.integrated.confirmOnKill": "always", // === Linux @@ -70,10 +70,15 @@ "editor.suggestFontSize": 12, "editor.hover.delay": 150, "editor.unicodeHighlight.allowedCharacters": { - "‘": true + "‘": true }, // <<< Editor >>> + // === Prettier + "prettier.enable": true, + "prettier.tabWidth": 4, + // <<< Prettier >>> + // === vite === "vite.autoStart": false, "vite.browserType": "system", @@ -160,6 +165,7 @@ "nil": { "formatting": { "command": ["nixpkgs-fmt"] } } - } + }, + "continue.enableTabAutocomplete": true // <<< Nix >>> }