Skip to content

Instantly share code, notes, and snippets.

@Br4z
Created December 26, 2023 02:31
Show Gist options
  • Save Br4z/618bd822c9277c24bd4e5c63df216e02 to your computer and use it in GitHub Desktop.
Save Br4z/618bd822c9277c24bd4e5c63df216e02 to your computer and use it in GitHub Desktop.
Personal Visual Studio Code settings.json
{
/* -------------------------------------------------------------------------- */
/* TERMINAL */
/* -------------------------------------------------------------------------- */
"terminal.integrated.fontSize": 18,
"terminal.integrated.enablePersistentSessions": false,
/* -------------------------------------------------------------------------- */
/* GUI */
/* -------------------------------------------------------------------------- */
"workbench.colorTheme": "Apprentice",
"workbench.productIconTheme": "material-product-icons",
"workbench.statusBar.visible": false,
"workbench.sideBar.location": "right",
"workbench.editor.showTabs": "single",
"workbench.startupEditor": "none",
"workbench.list.smoothScrolling": true,
"workbench.tree.enableStickyScroll": true,
"editor.fontSize": 18,
"editor.fontFamily": "CaskaydiaCove Nerd Font, monospace",
"editor.fontLigatures": true,
"editor.renderWhitespace": "all",
"editor.smoothScrolling": true,
"editor.scrollbar.vertical": "auto",
"editor.cursorBlinking": "expand",
"editor.cursorSmoothCaretAnimation": "on",
"editor.linkedEditing": true,
"editor.detectIndentation": false,
"editor.inlayHints.enabled": "on",
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": "active",
"editor.minimap.enabled": false,
"editor.glyphMargin": false,
"editor.overviewRulerBorder": false,
"editor.hideCursorInOverviewRuler": true,
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": [
// Following will be in italic
"comment",
"entity.name.type.class", // class names
"constant", // string, number, boolean..., this, super
"storage.modifier", // static keyword
"storage.type.class.js", // class keyword
"keyword" // import, export, return…
],
"settings": {
"fontStyle": "italic bold"
}
}
]
},
"editor.wordWrap": "off",
"editor.insertSpaces": false,
"editor.tabSize": 4,
"editor.stickyScroll.enabled": true,
"diffEditor.wordWrap": "off",
"files.autoSave": "onFocusChange",
"security.workspace.trust.untrustedFiles": "open", // Don't show the annoying prompt
"explorer.confirmDragAndDrop": false, // Don't show the pop up confirmation
"explorer.confirmDelete": false,
/* ------------------------------- FORMATTING ------------------------------- */
"files.eol": "\n",
"files.trimTrailingWhitespace": true,
"editor.formatOnPaste": true,
"C_Cpp.formatting": "vcFormat",
"[python]": {
"editor.formatOnType": true
},
"[markdown]": {
"editor.defaultFormatter": "darkriszty.markdown-table-prettify"
},
"markdownlint.config": {
"MD007": {
"indent": 1
},
"MD010": false,
"MD028": false,
"MD040": false
},
/* ------------------------------- LIVE SERVER ------------------------------ */
"liveServer.settings.donotShowInfoMsg": true,
"liveServer.settings.ChromeDebuggingAttachment": false,
"liveServer.settings.multiRootWorkspaceName": "",
"liveServer.settings.mount": [],
/* ----------------------------------- VIM ---------------------------------- */
"vim.useSystemClipboard": true,
"vim.leader": " ",
"vim.startInInsertMode": true,
"vim.useCtrlKeys": false,
"editor.lineNumbers": "relative",
/* --------------------------- ANOTHER EXTENSIONS --------------------------- */
"extensions.ignoreRecommendations": true,
"editor.inlineSuggest.enabled": true,
/* ----------------------------------- SYN ---------------------------------- */
"settingsSync.ignoredExtensions": [
"streetsidesoftware.code-spell-checker",
"streetsidesoftware.code-spell-checker-spanish",
"dendron.dendron"
],
"settingsSync.ignoredSettings": [
"editor.insertSpaces",
"editor.fontSize"
],
"workbench.settings.editor": "json",
"github.copilot.enable": {
"*": false,
"plaintext": false,
"markdown": false,
"scminput": false
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment