Skip to content

Instantly share code, notes, and snippets.

@einargudnig
Created January 8, 2024 06:09
Show Gist options
  • Save einargudnig/1d4efe842d2fdc1698a57ab7cb5fad31 to your computer and use it in GitHub Desktop.
Save einargudnig/1d4efe842d2fdc1698a57ab7cb5fad31 to your computer and use it in GitHub Desktop.
VS Code settings
{
"workbench.sideBar.location": "right",
"editor.fontLigatures": true,
"editor.fontFamily": "Geist Mono",
"editor.tabSize": 2,
"workbench.iconTheme": "eq-material-theme-icons",
"workbench.colorTheme": "One Hunter Flexoki Dark",
"editor.fontSize": 14,
"editor.lineHeight": 22,
"editor.letterSpacing": 0.5,
"editor.fontWeight": "400",
"editor.cursorStyle": "line",
"editor.cursorWidth": 5,
"editor.cursorBlinking": "smooth",
"editor.cursorSmoothCaretAnimation": "on",
"editor.stickyScroll.enabled": true,
"editor.guides.bracketPairs": true,
"editor.guides.highlightActiveIndentation": true,
"apc.font.family": "Geist Mono",
"apc.activityBar": {
"position": "top",
"size": 36
},
"apc.statusBar": {
"position": "editor-bottom",
"height": 22,
"fontSize": 12
},
"apc.electron": {
"titleBarStyle": "hiddenInset",
"trafficLightPosition": {
"x": 8,
"y": 10
}
},
"apc.header": {
"height": 34,
"fontSize": 14
},
"apc.listRow": {
"height": 21,
"fontSize": 13
},
"terminal.external.osxExec": "iTerm.app",
"terminal.integrated.env.osx": {},
"terminal.integrated.fontFamily": "Geist Mono",
"terminal.integrated.lineHeight": 1.3,
"terminal.integrated.sendKeybindingsToShell": true,
"terminal.explorerKind": "external",
"diffEditor.ignoreTrimWhitespace": false,
"workbench.editor.revealIfOpen": false,
"zenMode.fullScreen": false,
"zenMode.centerLayout": false,
"editor.accessibilitySupport": "off",
"workbench.colorCustomizations": {
"editor.lineHighlightBackground": "#1073cf2d",
"editor.lineHighlightBorder": "#9fced11f"
},
"editor.wordWrap": "off",
"diffEditor.wordWrap": "off",
"[markdown]": {
"editor.wordWrap": "off",
"editor.quickSuggestions": {
"comments": "off",
"strings": "off",
"other": "off"
}
},
"editor.guides.indentation": true,
"editor.formatOnSave": true,
"editor.formatOnType": true,
"editor.formatOnPaste": true,
"prettier.requireConfig": true,
"prettier.semi": false,
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.codeActionsOnSave": {
"source.fixAll.eslint": "explicit"
},
"git.autofetch": true,
"extensions.ignoreRecommendations": true,
"vsintellicode.modify.editor.suggestSelection": "automaticallyOverrodeDefaultValue",
"editor.inlineSuggest.enabled": true,
"typescript.updateImportsOnFileMove.enabled": "always",
"javascript.updateImportsOnFileMove.enabled": "always",
"git.enableSmartCommit": true,
"github.copilot.enable": {
"*": true,
"plaintext": true,
"markdown": true,
"scminput": false,
"yaml": false
},
"search.useIgnoreFiles": false,
"explorer.excludeGitIgnore": true,
"search.exclude": {
"**/*.gitignore": true,
"**/build": true,
"**/dist": true,
"**/node_modules": false,
"**/node_modules/*/**": true
},
"tailwindCSS.files.exclude": [
"**/.git/**",
"**/.hg/**",
"**/.svn/**"
],
"workbench.settings.applyToAllProfiles": [
"editor.formatOnSave",
"editor.formatOnPaste"
],
"liveshare.launcherClient": "visualStudioCode",
"codestats.username": "einargudni",
"workbench.startupEditor": "none",
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment