Skip to content

Instantly share code, notes, and snippets.

@Jumori
Last active January 15, 2025 20:36
Show Gist options
  • Save Jumori/c3f2e802e039604aaf14a527515c0433 to your computer and use it in GitHub Desktop.
Save Jumori/c3f2e802e039604aaf14a527515c0433 to your computer and use it in GitHub Desktop.
{
"workbench.iconTheme": "symbols",
"workbench.startupEditor": "newUntitledFile",
// MATERIAL ICON THEME - FOLDERS SCHEMA --------------------------------------
"material-icon-theme.activeIconPack": "nest",
"material-icon-theme.folders.associations": {
"infra": "app",
"entities": "class",
"domain": "class",
"schemas": "class",
"typeorm": "database",
"repositories": "mappings",
"http": "container",
"migrations": "tools",
"modules": "components",
"implementations": "core",
"dtos": "typescript",
"fakes": "mock",
"websockets": "pipe",
"protos": "pipe",
"grpc": "pipe",
"providers": "include",
"subscribers": "messages",
"useCases": "controller",
"kafka": "scripts",
"mappers": "meta",
"_shared": "shared",
"eslint-config": "tools",
"kube": "kubernetes"
},
"material-icon-theme.files.associations": {
"ormconfig.json": "database",
"tsconfig.json": "tune",
"*.proto": "3d",
"*.webpack.js": "webpack"
},
// FONTS ---------------------------------------------------------------------
"terminal.integrated.fontSize": 14,
"editor.tabSize": 2,
"editor.fontSize": 16,
"editor.lineHeight": 20,
// FIRACODE AND JETBRAINS MONO CONFIGS ---------------------------------------
"editor.fontFamily": "JetBrains Mono, Fira Code",
"editor.fontLigatures": true,
// GENERAL CONFIGS -----------------------------------------------------------
"editor.minimap.enabled": true,
"explorer.compactFolders": false,
"editor.renderLineHighlight": "gutter",
"workbench.editor.labelFormat": "short",
"javascript.updateImportsOnFileMove.enabled": "never",
"typescript.updateImportsOnFileMove.enabled": "never",
// "typescript.tsserver.log": "verbose",
"breadcrumbs.enabled": true,
"editor.parameterHints.enabled": false,
"editor.multiCursorModifier": "ctrlCmd",
"editor.formatOnPaste": true,
"editor.renderControlCharacters": false,
"editor.renderWhitespace": "none",
"editor.rulers": [80, 120],
"editor.semanticHighlighting.enabled": true,
"files.associations": {
"*.js": "javascript"
},
"extensions.ignoreRecommendations": true,
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.acceptSuggestionOnEnter": "on", // FIXME off
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true
// "**/node_modules": true
},
"files.watcherExclude": {
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/node_modules/*/**": true
},
// Sticky scroll
"editor.stickyScroll.enabled": false,
"workbench.tree.enableStickyScroll": false,
// EDITOR BRACKET PAIR COLORS NATIVELY ---------------------------------------
"editor.bracketPairColorization.enabled": true,
"workbench.colorCustomizations": {
"editorBracketHighlight.foreground1": "#ffb86c",
"editorBracketHighlight.foreground2": "#8be9fd",
"editorBracketHighlight.foreground3": "#bd93f9",
"editorBracketHighlight.foreground4": "#50fa7b",
"editorBracketHighlight.foreground5": "#f1fa8c",
"editorBracketHighlight.foreground6": "#abb2c0",
"editorBracketHighlight.unexpectedBracket.foreground": "#ff5555"
},
// EDITOR KEYBOARD DISPATCH --------------------------------------------------
"keyboard.dispatch": "keyCode", // For US keyboard mapping instead os ABNT
// EDITOR DEFAULT FORMATTER --------------------------------------------------
"[javascript]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[vue]": {
"editor.defaultFormatter": "esbenp.prettier-vscode"
},
"[json]": {
"editor.defaultFormatter": "vscode.json-language-features"
},
// =================== CONFIG: prisma ===================
"[prisma]": {
"editor.formatOnSave": true,
"editor.defaultFormatter": "Prisma.prisma"
},
// CODE SPELL CHECKER --------------------------------------------------------
"cSpell.enableFiletypes": [
"!asciidoc",
"!c",
"!cpp",
"!csharp",
"!go",
"!handlebars",
"!haskell",
"!jade",
"!java",
"!latex",
"!php",
"!pug",
"!python",
"!restructuredtext",
"!rust",
"!scala",
"!scss"
],
"cSpell.language": "en,pt",
// REACT CONFIG --------------------------------------------------------------
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
// VUE 3 ---------------------------------------------------------------------
// ATOM KEYMAP ---------------------------------------------------------------
"atomKeymap.promptV3Features": true,
// LIVE SERVER ---------------------------------------------------------------
"liveServer.settings.donotVerifyTags": true,
"liveServer.settings.donotShowInfoMsg": true,
// GIT GRAPH -----------------------------------------------------------------
"git-graph.openToTheRepoOfTheActiveTextEditorDocument": true,
"git-graph.maxDepthOfRepoSearch": 1,
"git.autofetch": true,
// SynthWave 84 THEME --------------------------------------------------------
"vscode_custom_css.imports": [
"file:///C:/Users/julia/Downloads/SynthWave_Theme/synthwave84.css"
],
"sync.gist": "c71f10cdacee868a3ffaa23f08c7a5fd",
// TODO TREE -----------------------------------------------------------------
"todo-tree.tree.showScanModeButton": false,
"todo-tree.general.tags": [
"BUG",
"HACK",
"FIXME",
"TODO",
"XXX",
"[ ]",
"[x]"
],
"todo-tree.regex.regex": "(//|#|<!--|;|/\\*|^|^\\s*(-|\\d+.))\\s*($TAGS)",
// BETTER COMMENTS -----------------------------------------------------------
"better-comments.multilineComments": true,
"better-comments.highlightPlainText": false,
"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": "#474747",
"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": "#98C379",
"strikethrough": false,
"underline": false,
"backgroundColor": "transparent",
"bold": false,
"italic": false
}
],
// TABNINE -------------------------------------------------------------------
"tabnine.experimentalAutoImports": true,
// DEFAULT SHELL -------------------------------------------------------------
"terminal.integrated.fontFamily": "JetBrainsMono Nerd Font, JetBrains Mono, Fira Code",
"terminal.integrated.tabs.enabled": true,
"diffEditor.ignoreTrimWhitespace": false,
"workbench.editorAssociations": {
"*.ipynb": "jupyter-notebook"
},
"notebook.cellToolbarLocation": {
"default": "right",
"jupyter-notebook": "left"
},
"workbench.colorTheme": "Min Dark",
"workbench.productIconTheme": "fluent-icons",
"git.confirmSync": false,
"githubPullRequests.pullBranch": "never",
"[python]": {
"editor.formatOnType": true
},
"terminal.integrated.env.linux": {},
"git.enableSmartCommit": true,
"explorer.confirmDelete": false,
"symbols.hidesExplorerArrows": false,
"console-ninja.featureSet": "Community",
"projectManager.git.baseFolders": [
"~/www"
],
"prisma.showPrismaDataPlatformNotification": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment