Skip to content

Commit b2a506d

Browse files
committed
feat(vscode): update vscode settings
1 parent 19ddfaf commit b2a506d

File tree

1 file changed

+14
-9
lines changed

1 file changed

+14
-9
lines changed

editors/vscode/settings.json

+14-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
{
2+
"[caddyfile]": {
3+
"editor.defaultFormatter": "matthewpi.caddyfile-support"
4+
},
25
"[dockercompose]": {
36
"editor.defaultFormatter": "ms-azuretools.vscode-docker"
47
},
@@ -175,6 +178,10 @@
175178
"explorer.fileNesting.enabled": true,
176179
"explorer.fileNesting.expand": false,
177180
"explorer.fileNesting.patterns": {
181+
".clang-tidy": ".clang-format, .clangd, compile_commands.json",
182+
".env": "*.env, .env.*, .envrc, env.d.ts",
183+
".gitignore": ".gitattributes, .gitmodules, .gitmessage, .mailmap, .git-blame*",
184+
".project": ".classpath",
178185
"*.asax": "$(capture).*.cs, $(capture).*.vb",
179186
"*.ascx": "$(capture).*.cs, $(capture).*.vb",
180187
"*.ashx": "$(capture).*.cs, $(capture).*.vb",
@@ -203,15 +210,11 @@
203210
"*.vbproj": "*.config, *proj.user, appsettings.*, bundleconfig.json",
204211
"*.vue": "$(capture).*.ts, $(capture).*.js, $(capture).story.vue",
205212
"*.xaml": "$(capture).xaml.cs",
206-
".clang-tidy": ".clang-format, .clangd, compile_commands.json",
207-
".env": "*.env, .env.*, .envrc, env.d.ts",
208-
".gitignore": ".gitattributes, .gitmodules, .gitmessage, .mailmap, .git-blame*",
209-
".project": ".classpath",
210-
"BUILD.bazel": "*.bzl, *.bazel, *.bazelrc, bazel.rc, .bazelignore, .bazelproject, WORKSPACE",
211-
"CMakeLists.txt": "*.cmake, *.cmake.in, .cmake-format.yaml, CMakePresets.json",
212213
"artisan": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, playwright.config.*, postcss.config.*, puppeteer.config.*, server.php, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, unocss.config.*, vitest.config.*, webpack.config.*, webpack.mix.js, windi.config.*",
213214
"astro.config.*": "*.env, .babelrc*, .codecov, .cssnanorc*, .env.*, .envrc, .htmlnanorc*, .lighthouserc.*, .mocha*, .postcssrc*, .terserrc*, api-extractor.json, ava.config.*, babel.config.*, contentlayer.config.*, cssnano.config.*, cypress.*, env.d.ts, formkit.config.*, formulate.config.*, histoire.config.*, htmlnanorc.*, jasmine.*, jest.config.*, jsconfig.*, karma*, lighthouserc.*, playwright.config.*, postcss.config.*, puppeteer.config.*, svgo.config.*, tailwind.config.*, tsconfig.*, tsdoc.*, unocss.config.*, vitest.config.*, webpack.config.*, windi.config.*",
215+
"BUILD.bazel": "*.bzl, *.bazel, *.bazelrc, bazel.rc, .bazelignore, .bazelproject, WORKSPACE",
214216
"cargo.toml": ".clippy.toml, .rustfmt.toml, cargo.lock, clippy.toml, cross.toml, rust-toolchain.toml, rustfmt.toml",
217+
"CMakeLists.txt": "*.cmake, *.cmake.in, .cmake-format.yaml, CMakePresets.json",
215218
"composer.json": ".php*.cache, composer.lock, phpunit.xml*, psalm*.xml",
216219
"default.nix": "shell.nix",
217220
"deno.json*": "*.env, .env.*, .envrc, api-extractor.json, env.d.ts, import-map.json, import_map.json, jsconfig.*, tsconfig.*, tsdoc.*",
@@ -240,6 +243,7 @@
240243
},
241244
"files.autoSave": "onFocusChange",
242245
"files.eol": "\n",
246+
"files.insertFinalNewline": true,
243247
"git-graph.tabIconColourTheme": "grey",
244248
"git.autofetch": true,
245249
"git.openRepositoryInParentFolders": "never",
@@ -320,6 +324,7 @@
320324
"typescript.updateImportsOnFileMove.enabled": "always",
321325
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
322326
"where-am-i.colorful": false,
327+
"window.nativeFullScreen": true,
323328
"window.titleBarStyle": "custom",
324329
"workbench.colorCustomizations": {
325330
"terminal.ansiBlack": "#3b4252",
@@ -340,11 +345,10 @@
340345
"terminal.ansiYellow": "#ebcb8b",
341346
"terminal.foreground": "#d8dee9"
342347
},
343-
"workbench.colorTheme": "One Dark Pro",
348+
"workbench.colorTheme": "Gruvbox Dark Medium",
344349
"workbench.editor.labelFormat": "short",
345350
"workbench.editor.languageDetection": true,
346351
"workbench.editor.pinnedTabsOnSeparateRow": true,
347-
"workbench.iconTheme": "material-icon-theme",
348352
"workbench.list.horizontalScrolling": true,
349353
"workbench.list.smoothScrolling": true,
350354
"workbench.productIconTheme": "fluent-icons",
@@ -353,5 +357,6 @@
353357
"workbench.startupEditor": "none",
354358
"workbench.statusBar.visible": true,
355359
"workbench.tree.enableStickyScroll": true,
356-
"workbench.tree.indent": 20
360+
"workbench.tree.indent": 20,
361+
"workbench.iconTheme": "catppuccin-mocha"
357362
}

0 commit comments

Comments
 (0)