Created
June 26, 2022 18:34
-
-
Save varunswarup0/12b76aa8e2abb1a9d1b5cfe9ac874900 to your computer and use it in GitHub Desktop.
This file contains 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
{ | |
"editor.minimap.enabled": false, | |
// "editor.fontFamily": "'Operator Mono Light','Fira Code iScript', 'Fira Code', Consolas, 'Courier New', monospace", | |
// "editor.fontFamily": "'Operator Mono Lig', 'Fira Code', Consolas, 'Courier New', monospace", | |
// "editor.fontFamily": "'Fira Code iScript', 'Fira Code', Consolas, 'Courier New', monospace", | |
"editor.fontFamily": "JetBrains Mono", | |
// "editor.fontFamily": "MonoLisa", | |
"editor.fontLigatures": true, | |
"editor.fontSize": 18, | |
// "terminal.integrated.fontFamily": "Meslo LG M for Powerline", | |
"workbench.sideBar.location": "right", | |
"files.exclude": { | |
"**/node_modules": true, | |
"**/.classpath": true, | |
"**/.project": true, | |
"**/.settings": true, | |
"**/.factorypath": true | |
}, | |
"editor.lineNumbers": "on", | |
"editor.glyphMargin": false, | |
"terminal.integrated.cursorStyle": "line", | |
// "bracket-pair-colorizer-2.colors": ["#FAD000", " #FF628C", "#00FF009A"], | |
// "terminal.integrated.fontFamily": "TerminessTTF NF,MesloLGM NF", | |
"terminal.integrated.fontSize": 14, | |
"editor.cursorWidth": 5, | |
"editor.snippetSuggestions": "top", | |
"files.trimTrailingWhitespace": true, | |
"files.trimFinalNewlines": true, | |
"explorer.sortOrder": "type", | |
"editor.smoothScrolling": true, | |
"window.newWindowDimensions": "inherit", | |
"errorLens.fontStyleItalic": true, | |
"editor.defaultFormatter": "esbenp.prettier-vscode", | |
"editor.formatOnPaste": true, | |
"workbench.activityBar.visible": true, | |
"workbench.editor.showTabs": true, | |
"breadcrumbs.enabled": true, | |
"editor.tabSize": 2, | |
"liveServer.settings.donotShowInfoMsg": true, | |
"editor.suggestSelection": "first", | |
"leetcode.workspaceFolder": "C:\\Users\\varun\\.leetcode", | |
"leetcode.defaultLanguage": "java", | |
"leetcode.filePath": { | |
"default": { | |
"folder": "", | |
"filename": "${id}.${kebab-case-name}.${ext}" | |
} | |
}, | |
"leetcode.hint.setDefaultLanguage": false, | |
"leetcode.hint.configWebviewMarkdown": false, | |
"leetcode.hint.commentDescription": false, | |
"java.format.settings.url": "https://raw.githubusercontent.com/google/styleguide/gh-pages/eclipse-java-google-style.xml", | |
"editor.formatOnSave": true, | |
"[java]": { | |
"editor.defaultFormatter": "redhat.java" | |
}, | |
"sonarlint.rules": { | |
"java:S6212": { | |
"level": "off" | |
} | |
}, | |
"leetcode.hint.commandShortcut": false, | |
"editor.cursorBlinking": "expand", | |
"workbench.colorCustomizations": { | |
"terminal.ansiBlack": "#171c2a", | |
"terminal.ansiRed": "#E35535", | |
"terminal.ansiGreen": "#52AB62", | |
"terminal.ansiYellow": "#ffd866", | |
"terminal.ansiBlue": "#00B3BD", | |
"terminal.ansiMagenta": "#e991e3", | |
"terminal.ansiCyan": "#78e8c6", | |
"terminal.ansiWhite": "#FFFFFFcc", | |
"terminal.ansiBrightBlack": "#00B3BD", | |
"terminal.ansiBrightRed": "#E35535", | |
"terminal.ansiBrightGreen": "#52AB62", | |
"terminal.ansiBrightYellow": "#ffd866", | |
"terminal.ansiBrightBlue": "#00B3BD", | |
"terminal.ansiBrightMagenta": "#e991e3", | |
"terminal.ansiBrightCyan": "#78e8c6", | |
"terminal.ansiBrightWhite": "#00B3BD", | |
"terminal.background": "#171c2a", | |
"terminalCursor.background": "#ffd866", | |
"terminalCursor.foreground": "#ffd866" | |
}, | |
"workbench.colorTheme": "Night Owl", | |
"prettier.semi": false, | |
"prettier.singleQuote": true, | |
"prettier.jsxSingleQuote": true, | |
"prettier.trailingComma": "none", | |
// "prettier.disableLanguages": ["markdown"], | |
"[markdown]": { | |
"editor.defaultFormatter": "redhat.java" | |
}, | |
"window.zoomLevel": -2 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment