Skip to content

Instantly share code, notes, and snippets.

@nabily4e-dev
Last active August 7, 2023 06:05
Show Gist options
  • Save nabily4e-dev/4b75d66fef8b259e7fa67bc352584f99 to your computer and use it in GitHub Desktop.
Save nabily4e-dev/4b75d66fef8b259e7fa67bc352584f99 to your computer and use it in GitHub Desktop.
{
// Editor Behavior Settings
"workbench.colorTheme": "GitHub Dark Default",
"editor.cursorStyle": "block",
// "editor.renderWhitespace": "boundary",
"editor.wordWrap": "on",
"editor.wordWrapColumn": 80,
"editor.bracketPairColorization.independentColorPoolPerBracketType": true,
"editor.guides.bracketPairs": "active",
"editor.guides.bracketPairsHorizontal": true,
"editor.smoothScrolling": true,
// "editor.stickyScroll.enabled": true,
"editor.tabCompletion": "on",
"editor.cursorSmoothCaretAnimation": "on",
"editor.formatOnSave": true,
"editor.minimap.scale": 2,
"editor.suggest.preview": true,
"editor.suggest.showStatusBar": true,
"editor.linkedEditing": true,
"editor.minimap.enabled": false,
"editor.minimap.renderCharacters": false,
"editor.mouseWheelScrollSensitivity": 2,
"editor.fastScrollSensitivity": 2,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.organizeImports": true
},
"editor.inlineSuggest.showToolbar": "always",
"editor.inlineSuggest.enabled": true,
"editor.cursorBlinking": "expand",
"editor.tabSize": 2,
"editor.lineHeight": 1.3,
"editor.fontFamily": "'CaskaydiaCove NFM', 'Cascadia Code', 'Fira code', 'Dank Mono', 'Courier New', monospace",
"editor.fontLigatures": true,
"editor.fontSize": 15,
"javascript.updateImportsOnFileMove.enabled": "always",
"prettier.singleQuote": true,
"prettier.singleAttributePerLine": true,
"prettier.jsxSingleQuote": true,
"prettier.enableDebugLogs": true,
"prettier.semi": true,
// File Type Settings
"[html]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"indentRainbow.excludedLanguages": ["plaintext"],
"diffEditor.codeLens": true,
"security.workspace.trust.untrustedFiles": "open",
"security.allowedUNCHosts": ["wsl.localhost"],
"workbench.iconTheme": "material-icon-theme",
"workbench.list.smoothScrolling": true,
"workbench.list.mouseWheelScrollSensitivity": 2,
"workbench.list.fastScrollSensitivity": 2,
"workbench.layoutControl.enabled": false,
// "workbench.editor.wrapTabs": true,
"workbench.editor.decorations.badges": false,
"workbench.editor.enablePreviewFromCodeNavigation": true,
"workbench.preferredDarkColorTheme": "GitHub Dark",
"workbench.startupEditor": "newUntitledFile",
"liveshare.presence": true,
"markdown-preview-enhanced.previewTheme": "atom-material.css",
"liveServer.settings.ignoreFiles": [".vscode/**", "**/db.json"],
// Terminal Settings
"terminal.integrated.env.windows": {},
"terminal.integrated.env.linux": {},
// "terminal.integrated.defaultProfile.windows": "Ubuntu (WSL)",
"terminal.integrated.defaultProfile.windows": "Command Prompt",
"terminal.integrated.profiles.windows": {
"PowerShell": {
"source": "PowerShell",
"icon": "terminal-powershell"
},
"Command Prompt": {
"path": [
"${env:windir}\\Sysnative\\cmd.exe",
"${env:windir}\\System32\\cmd.exe"
],
"args": [],
"icon": "terminal-cmd"
},
"Git Bash": {
"source": "Git Bash"
},
"Debian (WSL)": {
"path": "C:\\WINDOWS\\System32\\wsl.exe",
"args": ["-d", "Debian"]
},
"Ubuntu-18.04 (WSL)": {
"path": "C:\\WINDOWS\\System32\\wsl.exe",
"args": ["-d", "Ubuntu-18.04"]
},
"Ubuntu-22.04 (WSL)": {
"path": "C:\\WINDOWS\\System32\\wsl.exe",
"args": ["-d", "Ubuntu-22.04"]
},
"Ubuntu (WSL)": {
"path": "C:\\Windows\\System32\\wsl.exe",
"args": ["-d", "Ubuntu"]
}
},
"terminal.external.windowsExec": "C:\\Windows\\System32\\bash.exe",
"terminal.integrated.cursorBlinking": true,
"terminal.integrated.smoothScrolling": true,
// Other Settings
"chat.experimental.quickQuestion.enable": true,
"audioCues.lineHasWarning": "auto",
"notebook.output.wordWrap": true,
"timeline.pageOnScroll": true,
"remote.tunnels.access.preventSleep": true,
"remote.downloadExtensionsLocally": true,
"breadcrumbs.enabled": false,
"workbench.editor.highlightModifiedTabs": true,
"workbench.editor.untitled.hint": "hidden",
"vscode-edge-devtools.browserFlavor": "Default",
"workbench.sideBar.location": "right",
"eslint.run": "onSave",
"turboConsoleLog.includeFileNameAndLineNum": false,
"turboConsoleLog.addSemicolonInTheEnd": true,
"turboConsoleLog.insertEnclosingClass": false,
"turboConsoleLog.insertEnclosingFunction": false,
"files.exclude": {
"**/.git": false
},
"cSpell.userWords": ["Nabi"],
"[python]": {
"editor.defaultFormatter": "ms-python.black-formatter"
},
"python.formatting.provider": "none",
"workbench.activityBar.visible": false,
"files.autoSave": "afterDelay",
"editor.formatOnPaste": true,
"editor.formatOnType": true,
"liveServer.settings.CustomBrowser": "firefox:PrivateMode",
"window.zoomLevel": 1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment