enable prettier, continue autocomplete tab with ollama

This commit is contained in:
Matthieu Morin 2024-04-01 15:38:23 +02:00
parent 2298278b3a
commit cb931b972f
1 changed files with 9 additions and 3 deletions

View File

@ -20,7 +20,7 @@
"typescript.tsserver.experimental.enableProjectDiagnostics": false, "typescript.tsserver.experimental.enableProjectDiagnostics": false,
// <<< Telemetry >>> // <<< Telemetry >>>
// === OS and files === // === OS and files ===
"terminal.integrated.splitCwd": "workspaceRoot", "terminal.integrated.splitCwd": "workspaceRoot",
"terminal.integrated.confirmOnKill": "always", "terminal.integrated.confirmOnKill": "always",
// === Linux // === Linux
@ -70,10 +70,15 @@
"editor.suggestFontSize": 12, "editor.suggestFontSize": 12,
"editor.hover.delay": 150, "editor.hover.delay": 150,
"editor.unicodeHighlight.allowedCharacters": { "editor.unicodeHighlight.allowedCharacters": {
"": true "": true
}, },
// <<< Editor >>> // <<< Editor >>>
// === Prettier
"prettier.enable": true,
"prettier.tabWidth": 4,
// <<< Prettier >>>
// === vite === // === vite ===
"vite.autoStart": false, "vite.autoStart": false,
"vite.browserType": "system", "vite.browserType": "system",
@ -160,6 +165,7 @@
"nil": { "nil": {
"formatting": { "command": ["nixpkgs-fmt"] } "formatting": { "command": ["nixpkgs-fmt"] }
} }
} },
"continue.enableTabAutocomplete": true
// <<< Nix >>> // <<< Nix >>>
} }