sort vscode settings
This commit is contained in:
parent
ec217a1187
commit
970b269f61
1 changed files with 87 additions and 61 deletions
|
@ -1,73 +1,99 @@
|
||||||
{
|
{
|
||||||
"security.workspace.trust.enabled": false,
|
|
||||||
"workbench.startupEditor": "none",
|
|
||||||
"[html]": {
|
|
||||||
//"editor.formatOnSave": true
|
|
||||||
},
|
|
||||||
"atomKeymap.promptV3Features": true,
|
|
||||||
"editor.multiCursorModifier": "ctrlCmd",
|
|
||||||
"editor.formatOnPaste": true,
|
|
||||||
"git.enableSmartCommit": true,
|
|
||||||
"git.confirmSync": false,
|
|
||||||
"git.autofetch": true,
|
|
||||||
"intelephense.format.braces": "k&r",
|
|
||||||
"polacode.transparentBackground": true,
|
|
||||||
"editor.formatOnSave": true,
|
|
||||||
"files.associations": {
|
|
||||||
"*.ctest": "c",
|
|
||||||
"*.cc": "cpp",
|
|
||||||
"*.hh": "cpp",
|
|
||||||
"*.h": "c",
|
|
||||||
"*.tih": "pascal",
|
|
||||||
"*.tig": "pascal"
|
|
||||||
},
|
|
||||||
"editor.fontFamily": "'FiraCode Nerd Font', 'Droid Sans Mono', 'monospace', monospace",
|
|
||||||
"editor.fontLigatures": true,
|
|
||||||
"extensions.ignoreRecommendations": true,
|
|
||||||
"window.menuBarVisibility": "toggle",
|
|
||||||
"editor.rulers": [
|
|
||||||
120
|
|
||||||
],
|
|
||||||
"[python]": {
|
|
||||||
"editor.formatOnType": true
|
|
||||||
},
|
|
||||||
"update.showReleaseNotes": false,
|
|
||||||
"git.openRepositoryInParentFolders": "always",
|
|
||||||
"editor.inlineSuggest.enabled": true,
|
|
||||||
"github.copilot.enable": {
|
|
||||||
"*": true,
|
|
||||||
"plaintext": true,
|
|
||||||
"markdown": true,
|
|
||||||
"scminput": false,
|
|
||||||
"yaml": false
|
|
||||||
},
|
|
||||||
"editor.formatOnSaveMode": "file",
|
|
||||||
"explorer.confirmDelete": false,
|
|
||||||
"editor.inlineSuggest.showToolbar": "always",
|
|
||||||
"c-cpp-flylint.clang.language": "C++",
|
|
||||||
"c-cpp-flylint.cppcheck.standard": [
|
|
||||||
"c++20"
|
|
||||||
],
|
|
||||||
"c-cpp-flylint.clang.standard": [
|
|
||||||
"c++20"
|
|
||||||
],
|
|
||||||
"editor.inlayHints.enabled": "off",
|
|
||||||
"editor.detectIndentation": false,
|
|
||||||
"[c]": {
|
"[c]": {
|
||||||
"editor.defaultFormatter": "xaver.clang-format"
|
"editor.defaultFormatter": "xaver.clang-format"
|
||||||
},
|
},
|
||||||
"[cpp]": {
|
"[cpp]": {
|
||||||
"editor.defaultFormatter": "xaver.clang-format"
|
"editor.defaultFormatter": "xaver.clang-format"
|
||||||
},
|
},
|
||||||
"c-cpp-flylint.flawfinder.enable": false,
|
"[html]": {
|
||||||
"c-cpp-flylint.flexelint.enable": false,
|
//"editor.formatOnSave": true
|
||||||
"c-cpp-flylint.lizard.enable": false,
|
},
|
||||||
"c-cpp-flylint.clang.enable": false,
|
|
||||||
"haskell.manageHLS": "GHCup",
|
|
||||||
"redhat.telemetry.enabled": false,
|
|
||||||
"[java]": {
|
"[java]": {
|
||||||
"editor.defaultFormatter": "redhat.java"
|
"editor.defaultFormatter": "redhat.java"
|
||||||
},
|
},
|
||||||
|
"[python]": {
|
||||||
|
"editor.formatOnType": true
|
||||||
|
},
|
||||||
|
"atomKeymap.promptV3Features": true,
|
||||||
|
"c-cpp-flylint.clang.enable": false,
|
||||||
|
"c-cpp-flylint.clang.language": "C",
|
||||||
|
"c-cpp-flylint.clang.standard": [
|
||||||
|
"c++20"
|
||||||
|
],
|
||||||
|
"c-cpp-flylint.cppcheck.standard": [
|
||||||
|
"c++20"
|
||||||
|
],
|
||||||
|
"c-cpp-flylint.flawfinder.enable": false,
|
||||||
|
"c-cpp-flylint.flexelint.enable": false,
|
||||||
|
"c-cpp-flylint.lizard.enable": false,
|
||||||
|
"deno.enable": true,
|
||||||
|
"editor.detectIndentation": false,
|
||||||
|
"editor.fontFamily": "'FiraCode Nerd Font', 'Droid Sans Mono', 'monospace', monospace",
|
||||||
|
"editor.fontLigatures": true,
|
||||||
|
"editor.formatOnPaste": true,
|
||||||
|
"editor.formatOnSave": true,
|
||||||
|
"editor.formatOnSaveMode": "file",
|
||||||
|
"editor.inlayHints.enabled": "off",
|
||||||
|
"editor.inlineSuggest.enabled": true,
|
||||||
|
"editor.inlineSuggest.showToolbar": "always",
|
||||||
"editor.largeFileOptimizations": false,
|
"editor.largeFileOptimizations": false,
|
||||||
"github.copilot.editor.enableAutoCompletions": true
|
"editor.multiCursorModifier": "ctrlCmd",
|
||||||
|
"editor.rulers": [
|
||||||
|
120
|
||||||
|
],
|
||||||
|
"explorer.confirmDelete": false,
|
||||||
|
"extensions.ignoreRecommendations": true,
|
||||||
|
"files.associations": {
|
||||||
|
"*.cc": "cpp",
|
||||||
|
"*.ctest": "c",
|
||||||
|
"*.h": "c",
|
||||||
|
"*.hh": "cpp",
|
||||||
|
"*.tig": "pascal",
|
||||||
|
"*.tih": "pascal"
|
||||||
|
},
|
||||||
|
"files.exclude": {
|
||||||
|
"**/.git": false
|
||||||
|
},
|
||||||
|
"git.autofetch": true,
|
||||||
|
"git.confirmSync": false,
|
||||||
|
"git.enableSmartCommit": true,
|
||||||
|
"git.openRepositoryInParentFolders": "always",
|
||||||
|
"github.copilot.editor.enableAutoCompletions": false,
|
||||||
|
"haskell.manageHLS": "GHCup",
|
||||||
|
"intelephense.format.braces": "k&r",
|
||||||
|
"materialTheme.accent": "Yellow",
|
||||||
|
"polacode.transparentBackground": true,
|
||||||
|
"redhat.telemetry.enabled": false,
|
||||||
|
"security.workspace.trust.enabled": false,
|
||||||
|
"update.showReleaseNotes": false,
|
||||||
|
"window.menuBarVisibility": "toggle",
|
||||||
|
"workbench.colorCustomizations": {
|
||||||
|
"[Material Theme Darker High Contrast]": {
|
||||||
|
"activityBar.activeBorder": "#FFA000",
|
||||||
|
"activityBarBadge.background": "#FFA000",
|
||||||
|
"breadcrumb.activeSelectionForeground": "#FFA000",
|
||||||
|
"editor.findMatchBorder": "#FFA000",
|
||||||
|
"editorSuggestWidget.highlightForeground": "#FFA000",
|
||||||
|
"editorWidget.border": "#FFA000",
|
||||||
|
"editorWidget.resizeBorder": "#FFA000",
|
||||||
|
"list.activeSelectionForeground": "#FFA000",
|
||||||
|
"list.highlightForeground": "#FFA000",
|
||||||
|
"list.inactiveSelectionForeground": "#FFA000",
|
||||||
|
"menu.selectionForeground": "#FFA000",
|
||||||
|
"menubar.selectionForeground": "#FFA000",
|
||||||
|
"notificationLink.foreground": "#FFA000",
|
||||||
|
"panelTitle.activeBorder": "#FFA000",
|
||||||
|
"pickerGroup.foreground": "#FFA000",
|
||||||
|
"progressBar.background": "#FFA000",
|
||||||
|
"scrollbarSlider.activeBackground": "#FFA00050",
|
||||||
|
"selection.background": "#FFA00040",
|
||||||
|
"settings.headerForeground": "#FFA000",
|
||||||
|
"settings.modifiedItemIndicator": "#FFA000",
|
||||||
|
"statusBarItem.remoteBackground": "#FFA000",
|
||||||
|
"tab.activeBorder": "#FFA000",
|
||||||
|
"textLink.foreground": "#FFA000"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"workbench.colorTheme": "Material Theme Darker High Contrast",
|
||||||
|
"workbench.startupEditor": "none"
|
||||||
}
|
}
|
Loading…
Add table
Add a link
Reference in a new issue