markoczy

VS Code Config WIN

Sep 30th, 2020 (edited)
984
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "editor.rulers": [
  3.         80
  4.     ],
  5.     "[html]": {
  6.         "editor.formatOnPaste": false,
  7.         "editor.formatOnSave": false,
  8.         "editor.defaultFormatter": "esbenp.prettier-vscode"
  9.     },
  10.     // Remove bs formatting for yml
  11.     "[yaml]": {
  12.         "editor.formatOnPaste": false,
  13.         "editor.formatOnSave": false
  14.     },
  15.     // another bs formatter (thanks suckers!!)
  16.     "[markdown]": {
  17.         "editor.formatOnPaste": false,
  18.         "editor.formatOnSave": false,
  19.         "editor.wordWrap": "bounded"
  20.     },
  21.     "[csv]": {
  22.         "editor.wordWrap": "off"
  23.     },
  24.     "[csv (semicolon)]": {
  25.         "editor.wordWrap": "off"
  26.     },
  27.     // Controls whether unsaved files are remembered between sessions, allowing the save prompt when exiting the editor to be skipped.
  28.     "files.hotExit": "off",
  29.     "git.enableSmartCommit": true,
  30.     "git.confirmSync": false,
  31.     "gitlens.advanced.messages": {
  32.         "suppressCommitHasNoPreviousCommitWarning": false,
  33.         "suppressCommitNotFoundWarning": false,
  34.         "suppressFileNotUnderSourceControlWarning": false,
  35.         "suppressGitVersionWarning": false,
  36.         "suppressLineUncommittedWarning": false,
  37.         "suppressNoRepositoryWarning": false,
  38.         "suppressResultsExplorerNotice": false,
  39.         "suppressShowKeyBindingsNotice": true,
  40.         "suppressUpdateNotice": false,
  41.         "suppressWelcomeNotice": true
  42.     },
  43.     "terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe",
  44.     // Runs formatting tool on save.
  45.     "git.autofetch": true,
  46.     // Command to launch an editor.
  47.     "alt-editor.args": "{filename}",
  48.     "alt-editor.binary": "notepad.exe",
  49.     // Specifies Lint tool name.
  50.     "go.lintTool": "golangci-lint",
  51.     "workbench.editor.tabSizing": "shrink",
  52.     "editor.renderWhitespace": "none",
  53.     "editor.wordWrap": "bounded",
  54.     "editor.wordWrapColumn": 80,
  55.     "editor.minimap.enabled": false,
  56.     "editor.minimap.showSlider": "always",
  57.     "editor.autoClosingBrackets": "never",
  58.     // "editor.cursorBlinking": "blink",
  59.     // "editor.cursorStyle": "line",
  60.     // "diffEditor.renderSideBySide": true,
  61.     "workbench.list.multiSelectModifier": "alt",
  62.     "gitlens.keymap": "alternate",
  63.     "workbench.list.openMode": "singleClick",
  64.     "workbench.editor.enablePreview": false,
  65.     "editor.fontLigatures": true,
  66.     "editor.fontSize": 12,
  67.     "editor.fontFamily": "'Fira Code Retina', Consolas, 'Courier New', monospace",
  68.     "typescript.updateImportsOnFileMove.enabled": "never",
  69.     // CPP Settings
  70.     "C_Cpp.clang_format_sortIncludes": true,
  71.     "C_Cpp.default.cppStandard": "c++17",
  72.     "C_Cpp.default.intelliSenseMode": "gcc-x64",
  73.     "C_Cpp.clang_format_fallbackStyle": "LLVM",
  74.     "C_Cpp.clang_format_style": "file",
  75.     "C_Cpp.default.compilerPath": "C:\\Program Files\\mingw-w64\\x86_64-8.1.0-posix-seh-rt_v6-rev0\\mingw64\\bin\\gcc.exe",
  76.     "diffEditor.ignoreTrimWhitespace": false,
  77.     "extensions.autoCheckUpdates": false,
  78.     "extensions.autoUpdate": false,
  79.     "mssql.connections": [
  80.         {
  81.             "connectionString": "SERVER=MSSQLDBTEST01;UID=APGUser;PWD=APG18$User;DATABASE=PAPGBK;Application Name=Apg_dev",
  82.             "profileName": "APG Test",
  83.             "password": ""
  84.         }
  85.     ],
  86.     "[typescript]": {
  87.         "editor.defaultFormatter": "esbenp.prettier-vscode"
  88.     },
  89.     "[json]": {
  90.         "editor.defaultFormatter": "esbenp.prettier-vscode"
  91.     },
  92.     "breadcrumbs.enabled": true,
  93.     "[javascript]": {
  94.         "editor.defaultFormatter": "esbenp.prettier-vscode"
  95.     },
  96.     "editor.maxTokenizationLineLength": 2e+24,
  97.     "errorLens.onSave": true,
  98.     "mongoRunner": {
  99.         "connections": [
  100.             {
  101.                 "name": "local",
  102.                 "url": "mongodb://localhost:27017"
  103.             },
  104.             {
  105.                 "name": "pentagenv",
  106.                 "url": "mongodb://172.16.200.55:27017"
  107.             },
  108.             {
  109.                 "name": "integration",
  110.                 "url": "mongodb://192.168.39.61:27017"
  111.             },
  112.             {
  113.                 "name": "production",
  114.                 "url": "mongodb://192.168.39.62:27017"
  115.             }
  116.         ]
  117.     },
  118.     "editor.suggestSelection": "first",
  119.     "vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
  120.     // "C_Cpp.intelliSenseEngine": "Tag Parser"
  121.     "scm.defaultViewMode": "list",
  122.     "sort-imports.default-sort-style": "fds",
  123.     "omnisharp.path": "latest",
  124.     "[jsonc]": {
  125.         "editor.defaultFormatter": "esbenp.prettier-vscode"
  126.     },
  127.     "java.configuration.checkProjectSettingsExclusions": false,
  128.     "editor.autoClosingOvertype": "never",
  129.     "editor.autoClosingQuotes": "never",
  130.     "editor.autoSurround": "never",
  131.     "boot-java.change-detection.on": true,
  132.     // "spring-boot.ls.java.home": "C:\\Program Files\\Java\\jdk-11.0.7",
  133.     "java.configuration.updateBuildConfiguration": "automatic",
  134.     "extensions.ignoreRecommendations": false,
  135.     "java.semanticHighlighting.enabled": true,
  136.     "maven.view": "hierarchical",
  137.     "better-comments.tags": [
  138.         {
  139.             "tag": "!",
  140.             "color": "#FF2D00",
  141.             "strikethrough": false,
  142.             "backgroundColor": "transparent"
  143.         },
  144.         {
  145.             "tag": "?",
  146.             "color": "#3498DB",
  147.             "strikethrough": false,
  148.             "backgroundColor": "transparent"
  149.         },
  150.         {
  151.             "tag": "//",
  152.             "color": "#474747",
  153.             "strikethrough": true,
  154.             "backgroundColor": "transparent"
  155.         },
  156.         {
  157.             "tag": "todo",
  158.             "color": "#FF8C00",
  159.             "strikethrough": false,
  160.             "backgroundColor": "transparent"
  161.         },
  162.         {
  163.             "tag": "fixme",
  164.             "color": "#FF8C00",
  165.             "strikethrough": false,
  166.             "backgroundColor": "transparent"
  167.         },
  168.         {
  169.             "tag": "*",
  170.             "color": "#98C379",
  171.             "strikethrough": false,
  172.             "backgroundColor": "transparent"
  173.         }
  174.     ],
  175.     "java.project.referencedLibraries": [
  176.         "D:/Workspace/JavaLibs/**/*.jar"
  177.     ],
  178.     "java.codeGeneration.useBlocks": true,
  179.     "java.completion.guessMethodArguments": true,
  180.     "java.implementationsCodeLens.enabled": true,
  181.     "java.referencesCodeLens.enabled": true,
  182.     "java.codeGeneration.hashCodeEquals.useJava7Objects": true,
  183.     "java.project.importHint": false,
  184.     "java.project.importOnFirstTimeStartup": "automatic",
  185.     "remote.SSH.remotePlatform": {
  186.         "88.198.159.214": "linux"
  187.     },
  188.     "java.home": "C:\\Program Files\\Java\\jdk-11.0.7",
  189.     "maven.executable.path": "mvns",
  190.     "java.refactor.renameFromFileExplorer": "autoApply",
  191.     "workbench.iconTheme": "material-icon-theme",
  192.     "go.useLanguageServer": true,
  193.     "go.languageServerExperimentalFeatures": {
  194.  
  195.         "diagnostics": true,
  196.         "documentLink": true
  197.     },
  198.     "go.formatTool": "gofmt",
  199.     "workbench.startupEditor": "newUntitledFile",
  200.     "workbench.editorAssociations": [
  201.         {
  202.             "viewType": "jupyter-notebook",
  203.             "filenamePattern": "*.ipynb"
  204.         }
  205.     ],
  206.     "window.zoomLevel": 1
  207.     // "java.home": ""
  208. }
  209.  
Add Comment
Please, Sign In to add comment