Last active
September 1, 2023 21:24
-
-
Save dikaio/fb1ad1627a7c04dc43b13672099f9e06 to your computer and use it in GitHub Desktop.
current cursor/vscode settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"window.commandCenter": true, | |
"workbench.colorTheme": "Moxer Borderline", | |
"workbench.iconTheme": "moxer-icons", | |
"typescript.suggest.paths": false, | |
"javascript.suggest.paths": false , | |
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint", | |
"editor.formatOnPaste": false, | |
"editor.formatOnType": false, | |
"editor.formatOnSave": true, | |
"editor.formatOnSaveMode": "file", | |
"files.autoSave": "onFocusChange", | |
"vs-code-prettier-eslint.prettierLast": false, | |
"editor.colorDecoratorsLimit": 500, | |
"editor.cursorBlinking": "smooth", | |
"editor.cursorSmoothCaretAnimation": "off", | |
"editor.cursorStyle": "underline", | |
"editor.detectIndentation": false, | |
"editor.folding": true, | |
"editor.foldingMaximumRegions": 50000, | |
"editor.fontFamily": "Input Mono, Recursive Mono Linear, Fira Code, Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontWeight": "300", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 12, | |
"editor.letterSpacing": 0.5, | |
"editor.lineHeight": 24, | |
"editor.lineNumbers": "on", | |
"editor.linkedEditing": true, | |
"editor.links": false, | |
"editor.minimap.enabled": false, | |
"editor.occurrencesHighlight": false, | |
"editor.quickSuggestions": { | |
"strings": true | |
}, | |
"editor.renderWhitespace": "none", | |
"editor.scrollBeyondLastColumn": 2, | |
"editor.scrollBeyondLastLine": false, | |
"editor.selectionHighlight": false, | |
"editor.snippetSuggestions": "top", | |
"editor.suggestSelection": "first", | |
"editor.tabSize": 2, | |
"editor.tokenColorCustomizations": { | |
"textMateRules": [ | |
{ | |
"scope": ["comment", "punctuation.definition.comment"], | |
"settings": { | |
"fontStyle": "" | |
} | |
} | |
] | |
}, | |
"editor.trimAutoWhitespace": true, | |
"editor.unicodeHighlight.allowedCharacters": { "’": true }, | |
"editor.wordWrap": "on", | |
"explorer.confirmDelete": false, | |
"explorer.confirmDragAndDrop": false, | |
"extensions.autoUpdate": true, | |
"files.associations": { | |
"*.css": "tailwindcss", | |
"*.env.*": "env", | |
"*.erb": "erb", | |
"*.local": "shellscript" | |
}, | |
"github.copilot.enable": { | |
"*": true, | |
"plaintext": false, | |
"markdown": true, | |
"scminput": false, | |
"yaml": false | |
}, | |
"colorize.languages": [ | |
"javascript", | |
"javascriptreact", | |
"typescript", | |
"typescriptreact", | |
"vue", | |
"html", | |
"svelte", | |
"jsx", | |
"erb", | |
"php", | |
"blade", | |
"astro", | |
"markdown", | |
"md", | |
"mdx", | |
"mdsx", | |
"pug", | |
"jade", | |
"ts", | |
"tsx", | |
"css", | |
"scss", | |
"less", | |
"stylus", | |
"styl", | |
"json", | |
"jsonc", | |
"graphql", | |
"graphqls", | |
"graphqlschema" | |
], | |
"terminal.integrated.confirmOnKill": "never", | |
"terminal.integrated.copyOnSelection": true, | |
"terminal.integrated.cursorBlinking": true, | |
"terminal.integrated.cursorStyle": "underline", | |
"terminal.integrated.fontFamily": "Recursive Mono Linear, Fira Code, Menlo, Monaco, 'Courier New', monospace", | |
"terminal.integrated.fontSize": 12, | |
"terminal.integrated.fontWeight": "400", | |
"terminal.integrated.fontWeightBold": "600", | |
"terminal.integrated.letterSpacing": 1.5, | |
"terminal.integrated.lineHeight": 1.4, | |
"terminal.integrated.persistentSessionReviveProcess": "never", | |
"terminal.integrated.splitCwd": "initial", | |
"terminal.integrated.tabs.enabled": false, | |
"typescript.format.placeOpenBraceOnNewLineForControlBlocks": true, | |
"typescript.format.placeOpenBraceOnNewLineForFunctions": true, | |
"typescript.format.semicolons": "remove", | |
"typescript.updateImportsOnFileMove.enabled": "always", | |
"workbench.editorAssociations": { | |
"*.md": "default" | |
}, | |
"zenMode.centerLayout": true, | |
"zenMode.fullScreen": true, | |
"zenMode.hideActivityBar": true, | |
"zenMode.hideLineNumbers": false, | |
"zenMode.hideTabs": true, | |
"zenMode.restore": true, | |
"terminal.integrated.env.osx": { | |
"FIG_NEW_SESSION": "1" | |
}, | |
"editor.accessibilitySupport": "off", | |
"explorer.compactFolders": false | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment