Skip to content

Instantly share code, notes, and snippets.

@MatiasPujado
Last active February 8, 2023 01:26
Show Gist options
  • Save MatiasPujado/b1ceb99c61847fb045700b01b5cbec9d to your computer and use it in GitHub Desktop.
Save MatiasPujado/b1ceb99c61847fb045700b01b5cbec9d to your computer and use it in GitHub Desktop.
VSCode User Settings
{
// VSCode
"extensions.ignoreRecommendations": true,
"files.autoSave": "onFocusChange",
"liveServer.settings.donotVerifyTags": true,
"redhat.telemetry.enabled": true,
"rsp-ui.enableStartServerOnActivation": [
{
"id": "redhat.vscode-community-server-connector",
"name": "Community Server Connector",
"startOnActivation": true
}
],
"workbench.sideBar.location": "right",
"workbench.productIconTheme": "fluent-icons",
"workbench.colorTheme": "Community Material Theme Palenight High Contrast",
"explorer.confirmDelete": false,
"nodeDebugProcessPicker.match": [".vscode/tasks.json"],
// VSCode Editor
"editor.autoIndent": "brackets",
"editor.cursorBlinking": "expand",
"editor.linkedEditing": true,
"editor.tabCompletion": "on",
"editor.tabSize": 2,
"editor.formatOnSave": true,
"editor.bracketPairColorization.enabled": true,
"editor.fontFamily": "'JetBrainsMono Nerd Font', 'MesloLGL Nerd Font', 'MesloLGM Nerd Font', 'Fira Code Nerd Font', 'Monoid Nerd Font', 'Fira Code', 'Courier New', monospace",
"editor.fontLigatures": true,
// "editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.suggestSelection": "first",
"editor.wordWrap": "on",
"editor.semanticHighlighting.enabled": true,
"editor.guides.bracketPairs": true,
"editor.tokenColorCustomizations": {
"comments": "#007535"
},
// Theme
"city-lights-icons-vsc.hidesExplorerArrows": false,
"workbench.iconTheme": "city-lights-icons-vsc",
"oneDarkPro.bold": true,
"oneDarkPro.vivid": true,
// VSCode Terminal
"terminal.integrated.defaultProfile.windows": "zsh",
"terminal.integrated.allowMnemonics": true,
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorWidth": 2,
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.defaultProfile.linux": "zsh",
"terminal.integrated.fontFamily": "'JetBrainsMono Nerd Font', 'MesloLGL Nerd Font', 'MesloLGM Nerd Font', 'Fira Code Nerd Font', 'Monoid Nerd Font', 'Fira Code', 'Courier New', monospace",
"terminal.integrated.copyOnSelection": true,
"terminal.integrated.enableBell": true,
"terminal.integrated.scrollback": 10000,
"terminal.integrated.smoothScrolling": true,
// Formatter
"prettier.printWidth": 210,
"prettier.singleQuote": true,
"prettier.useTabs": true,
"[xml]": {
"editor.defaultFormatter": "redhat.vscode-xml"
},
// VSIntellicode
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
// Github
// "github.codespaces.createCodespaceInNewWindow": true,
// "gitHistory.sideBySide": true,
// "gitHistory.includeRemoteBranches": true,
// Project Manager
// "projectManager.groupList": true,
// "projectManager.filterOnFullPath": true,
// "projectManager.sortList": "Path",
// "projectManager.any.maxDepthRecursion": 0,
// "projectManager.git.maxDepthRecursion": 0,
// "projectManager.hg.maxDepthRecursion": 0,
// "projectManager.supportSymlinksOnBaseFolders": true,
// "projectManager.vscode.maxDepthRecursion": 0,
// "projectManager.tags": [
// "Personal",
// "Work",
// "Testing",
// "Practice",
// "School",
// "Fun"
// ],
// "projectManager.vscode.baseFolders": [
// "/media/Vault/Projects/"
// ],
// "projectManager.git.baseFolders": [
// "/media/Work/Projects/",
// "~/.tmp"
// ],
// "projectManager.projectsLocation": "/media/Work/Projects/",
// "[ignore]": {
// "editor.defaultFormatter": "foxundermoon.shell-format"
// },
// "projectManager.any.baseFolders": [
// "/media/Work/Projects",
// "/media/Work/Projects/Personal",
// "/media/Work/Projects/Work",
// "/media/Work/Projects/Utilities",
// "/media/Work/Projects/Courses"
// ],
// Better Comments
"better-comments.highlightPlainText": true,
"better-comments.tags": [
{
"tag": "!",
"color": "#FF2D00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "?",
"color": "#3498DB",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "//",
"color": "#086427",
"strikethrough": true,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "todo",
"color": "#FF8C00",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "*",
"color": "#00b8a4",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
},
{
"tag": "@",
"color": "#cd50ff",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
],
// TOC
"markdown-toc.insertAnchor": true,
"markdown-toc.orderedList": true,
// Lua
"lua.debug.settings.path": ["/media/Work/Projects"],
"lua.debug.settings.cpath": ["/usr/bin/lua", "/usr/lib/conky"],
"lua-local.interpreter": "/usr/bin/lua",
"Lua.workspace.library": ["/home/coder/.vscode/extensions/ketho.wow-api-0.7.6/EmmyLua/API", "/home/coder/.vscode/extensions/ketho.wow-api-0.7.6/EmmyLua/Optional"],
"Lua.completion.displayContext": 0,
"Lua.completion.callSnippet": "Both",
"Lua.diagnostics.globals": ["conky"],
"Lua.hint.enable": true,
"Lua.runtime.unicodeName": true,
"Lua.window.statusBar": false,
"luahelper.format.use_tab": true,
"luahelper.Warn.CheckAfterDefine": true,
"luahelper.Warn.CheckBinaryExpressionDuplicate": true,
"luahelper.Warn.CheckErrorOrAlwaysTrue": true,
"luahelper.Warn.CheckErrorAndAlwaysFalse": true,
"lua.format.lineWidth": 180,
"lua.format.linebreakMultipleAssignments": true,
"lua.targetVersion": "5.3",
"lua.preferLuaCheckErrors": true,
"luacheck.useLuacheck": false,
"Lua.telemetry.enable": true,
"files.associations": {
".conky.conf": "lua",
"conky.conf": "lua",
".conkyrc": "lua",
".conkyrc*": "lua"
},
// VIM
// "vim.textwidth": 180,
// "vim.vimrc.enable": true,
// Quokka
// "quokka.compactMessageOutput": true,
// "quokka.darkTheme.error.decorationAttachmentRenderOptions": {
// "border": null,
// "borderColor": null,
// "fontStyle": null,
// "fontWeight": null,
// "textDecoration": null,
// "color": "#fe536a",
// "backgroundColor": null,
// "margin": "1.2em",
// "width": null,
// "height": null
// },
// Others
// "redhat.telemetry.enabled": true,
// Java
"boot-java.rewrite.reconcile": true,
"java.foldingRange.enabled": false,
"java.saveActions.organizeImports": true,
// Spring
"boot-java.support-spring-xml-config.on": true,
// ErrorLens
"errorLens.enabled": false,
// Sonar
"sonarlint.connectedMode.connections.sonarqube": [],
"sonarlint.analyzerProperties": {},
// Java Test Config
"java.test.config": {
"name": "MEP-Testing",
"testKind": "junit",
"workingDirectory": "${workspaceFolder}"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment