Skip to content

Instantly share code, notes, and snippets.

@orodrigogo
Last active May 17, 2024 11:24
Show Gist options
  • Save orodrigogo/c519c77078a19bd9dff9849b12db86b8 to your computer and use it in GitHub Desktop.
Save orodrigogo/c519c77078a19bd9dff9849b12db86b8 to your computer and use it in GitHub Desktop.
Configurações do meu VSCode.
{
// EDITOR
"editor.fontFamily": "Fira Code",
"editor.wordWrap": "on",
"editor.fontSize": 22,
"editor.lineHeight": 38,
"editor.tabSize": 2,
"editor.bracketPairColorization.enabled": true,
"editor.guides.bracketPairs": true,
"editor.minimap.enabled": false,
"editor.formatOnSave": true,
"editor.formatOnPaste": true,
"editor.semanticHighlighting.enabled": false,
"editor.parameterHints.enabled": false,
"editor.renderLineHighlight": "gutter",
"editor.suggestSelection": "first",
// OTHERS
// "files.autoSave": "afterDelay",
"files.associations": {
"*.css": "css",
"css": "css"
},
"typescript.updateImportsOnFileMove.enabled": "never",
"symbols.hidesExplorerArrows": false,
"extensions.ignoreRecommendations": true,
"breadcrumbs.enabled": true,
// EXPLORER
"explorer.compactFolders": false,
"explorer.confirmDragAndDrop": false,
"explorer.confirmDelete": false,
// WORKBENCH
"workbench.colorTheme": "Omni",
"workbench.iconTheme": "symbols",
"workbench.startupEditor": "none",
"workbench.editor.labelFormat": "short",
"workbench.editor.enablePreview": false,
"workbench.statusBar.visible": false,
// PRETTIER
"editor.defaultFormatter": "esbenp.prettier-vscode",
"prettier.enable": true,
"prettier.singleQuote": false,
"prettier.tabWidth": 2,
"prettier.semi": false,
// TERMINAL
"terminal.integrated.defaultProfile.windows": "Git Bash",
"terminal.integrated.fontSize": 22,
"terminal.integrated.showExitAlert": false,
"terminal.integrated.profiles.windows": {
"Git Bash": {
"source": "Git Bash"
}
},
// ZEN MODE
"zenMode.hideActivityBar": true,
"zenMode.silentNotifications": true,
"zenMode.fullScreen": false,
"zenMode.centerLayout": false,
"zenMode.hideLineNumbers": false,
"emmet.syntaxProfiles": {
"javascript": "jsx"
},
"emmet.includeLanguages": {
"javascript": "javascriptreact"
},
"javascript.updateImportsOnFileMove.enabled": "always",
"security.workspace.trust.untrustedFiles": "newWindow",
"javascript.suggest.autoImports": true,
"typescript.suggest.autoImports": true,
// CODE SPELL
"cSpell.language": "en,pt",
"cSpell.userWords": [
"Amazfit",
"animatereactnative",
"Archivo",
"arrowright",
"borderless",
"BSON",
"button",
"bygroup",
"cardtype",
"clsx",
"corejs",
"coworking",
"Coworking",
"dayjs",
"dropbox",
"dtos",
"Entypo",
"esports",
"firefox",
"fontisto",
"Formik",
"Geocode",
"github",
"gluestack",
"gofinances",
"gorhom",
"gradlew",
"grotesk",
"gymignite",
"hairday",
"haptics",
"Haptics",
"hookform",
"ignitefleet",
"ignitefleetdatabase",
"ignitegym",
"igniteshoes",
"IGNITESHOES",
"igniteshoesapp",
"igtv",
"igvt",
"imask",
"Ionicons",
"iphone",
"knexfile",
"Macrotasks",
"mastercard",
"Mayk",
"middlewares",
"Millis",
"MILLIS",
"mmkv",
"mult",
"myapp",
"nativewind",
"netinfo",
"nlwcopa",
"notifee",
"nozbe",
"Octicons",
"onesignal",
"openapi",
"originalname",
"orodrigogo",
"Pixi",
"pressable",
"Pressable",
"realmdatabase",
"realmdb",
"Rennan",
"rerender",
"resetando",
"Roboto",
"rocketfinances",
"rocketnotes",
"rocketseat",
"Rocketseat",
"rodrigogoncalves",
"rsxp",
"shopify",
"signin",
"springify",
"supabase",
"swipeable",
"Swipeable",
"SWIPEABLE",
"tailwindcss",
"tamagui",
"Tamires",
"tsyringe",
"typeorm",
"unistyles",
"vadercover",
"varchar",
"viewability",
"voiceinput",
"watermelondb",
"Wifi",
"youtube",
"Youtube",
"zustand"
],
"cSpell.enableFiletypes": [
"!asciidoc",
"!c",
"!cpp",
"!csharp",
"!go",
"!handlebars",
"!haskell",
"!jade",
"!java",
"!latex",
"!php",
"!pug",
"!python",
"!restructuredtext",
"!rust",
"!scala",
"!scss"
],
// TAB NINE
"tabnine.experimentalAutoImports": true,
// GIT
"git.enableSmartCommit": true,
"git.openRepositoryInParentFolders": "always",
"security.workspace.trust.banner": "always",
"zenMode.showTabs": "single",
"liveServer.settings.donotShowInfoMsg": true,
// SYMBOLS THEME
"symbols.folders.associations": {
"screens": "folder-layout"
},
// WINDOW
"window.zoomLevel": 1,
"window.menuBarVisibility": "toggle",
"window.title": "${dirty}${activeEditorShort}",
"editor.comments.ignoreEmptyLines": false,
// TERMINAL
"terminal.integrated.fontWeight": "normal",
"terminal.integrated.cursorStyle": "line",
"terminal.integrated.cursorWidth": 3,
"terminal.integrated.cursorBlinking": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment