nzxl-s-coding-start-paket README
These are all the extensions that I use in my daily workflow!
I will try to keep this package updated as best as I can.
Tested with code 1.85.2
on Arch Linux
Personal settings.json
I've copied some stuff from other fellow devs and made adjustments to make it fit with my workflow!
{
"files.associations": {
"*.ejs": "html",
".env*": "dotenv"
},
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"scope": "keyword.other.dotenv",
"settings": {
"foreground": "#FF000000"
}
}
]
},
"git.autofetch": true,
"redhat.telemetry.enabled": false,
"editor.fontFamily": "GeistMono Nerd Font",
"scm.inputFontFamily": "GeistMono Nerd Font",
"terminal.integrated.fontFamily": "Source Code Pro",
"chat.editor.fontFamily": "GeistMono Nerd Font",
"debug.console.fontFamily": "GeistMono Nerd Font",
"editor.codeLensFontFamily": "GeistMono Nerd Font",
"notebook.output.fontFamily": "GeistMono Nerd Font",
"markdown.preview.fontFamily": "GeistMono Nerd Font",
"editor.inlayHints.fontFamily": "GeistMono Nerd Font",
"editor.fontSize": 15,
"terminal.integrated.fontSize": 15,
"editor.minimap.enabled": false,
"window.commandCenter": false,
"editor.scrollbar.vertical": "auto",
"window.titleBarStyle": "custom",
"editor.scrollbar.horizontal": "auto",
"apc.activityBar": {
"position": "bottom",
"hideSettings": true,
"size": 20
},
"apc.font.family": "GeistMono Nerd Font",
"apc.monospace.font.family": "GeistMono Nerd Font",
"apc.statusBar": {
"position": "editor-bottom",
"height": 28,
"fontSize": 12
},
"apc.stylesheet": {
".title-label": "display: none !important",
".tabs-and-actions-container > .editor-actions": "display: none !important",
".inline-tabs-placeholder": "display: none !important"
},
"workbench.startupEditor": "none",
"workbench.activityBar.location": "top",
"explorer.compactFolders": false,
"editor.tabSize": 2,
"editor.linkedEditing": true,
"breadcrumbs.filePath": "off",
"files.trimTrailingWhitespace": true,
"[markdown]": {
"files.trimTrailingWhitespace": false
},
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"gitlens.outputLevel": "silent",
"debug.internalConsoleOptions": "neverOpen",
"gitlens.debug": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.resolveGlobalModules": true,
"prettier.enable": true,
"diffEditor.ignoreTrimWhitespace": false,
"prettier.endOfLine": "auto",
"prettier.singleQuote": false,
"prettier.trailingComma": "es5",
"prettier.bracketSameLine": true,
"prettier.bracketSpacing": true,
"prettier.quoteProps": "as-needed",
"prettier.tabWidth": 4,
"prettier.semi": true,
"prettier.printWidth": 1000,
"prettier.htmlWhitespaceSensitivity": "ignore",
"editor.formatOnSave": true,
"dotenv.enableAutocloaking": true,
"workbench.iconTheme": "vs-nomo-dark",
"terminal.integrated.defaultProfile.windows": "Git Bash",
"breadcrumbs.enabled": false
}
Enjoy!