Skip to content

Instantly share code, notes, and snippets.

@LuisPalacios
Last active August 29, 2024 08:30
Show Gist options
  • Save LuisPalacios/c8e9e041217f811e49591392fcc7e28e to your computer and use it in GitHub Desktop.
Save LuisPalacios/c8e9e041217f811e49591392fcc7e28e to your computer and use it in GitHub Desktop.
Ejemplo VSCode settings global de usuario
{
// General
"workbench.colorTheme": "Default Light Modern",
"openInDefaultBrowser.run.openWithLocalHttpServer": false,
"terminal.integrated.enableMultiLinePasteWarning": "never",
"explorer.confirmDelete": false,
"editor.accessibilitySupport": "off",
"search.followSymlinks": false,
"editor.wordWrap": "on",
"files.encoding": "utf8",
//"files.trimTrailingWhitespace": true,
"files.associations": {
"*.json": "jsonc"
},
// Seguridad
// No uso workspace trust al ser un solo-developer
"security.workspace.trust.untrustedFiles": "open",
"security.workspace.trust.enabled": false,
// Específicos de Git
"git.openRepositoryInParentFolders": "always",
"git.enableSmartCommit": true,
"git.confirmSync": false,
"git.autofetch": true,
// Extensión: alefragnani.project-manager
// https://marketplace.visualstudio.com/items?itemName=alefragnani.project-manager
// Easily access your projects, no matter where they are located
"projectManager.git.baseFolders": [
"C:\\Users\\luis\\00.git",
"/Users/luis/00.git",
"/home/luis/00.git"
],
// Extensión: davidanson.vscode-markdownlint
// https://marketplace.visualstudio.com/items?itemName=DavidAnson.vscode-markdownlint
// Markdown/CommonMark linting and style checking for Visual Studio Code
"markdownlint.config": {
"MD013": false,
"MD033": false,
"MD041": false
},
// Extensión: shardulm94.trailing-spaces
// https://marketplace.visualstudio.com/items?itemName=shardulm94.trailing-spaces
// Highlight trailing spaces and delete them in a flash!
//"trailing-spaces.trimOnSave": true
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment