Created
July 30, 2023 14:21
-
-
Save iamdipankarj/75a07097055db710cf437a77f3609d23 to your computer and use it in GitHub Desktop.
GitLens user config for vscode
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
{ | |
"explorer.compactFolders" : false, | |
"gitlens.currentLine.enabled" : false, | |
"workbench.startupEditor" : "newUntitledFile", | |
"gitlens.blame.dateFormat" : "MMMM Do YYYY", | |
"typescript.preferences.importModuleSpecifier" : "relative", | |
"editor.inlineSuggest.enabled" : true, | |
"workbench.colorCustomizations" : { | |
"statusBar.background" : "#303030" | |
}, | |
"gitlens.blame.toggleMode" : "file", | |
"svelte.enable-ts-plugin" : true, | |
"gitlens.blame.format" : "${author} ${date}", | |
"gitlens.blame.avatars" : false, | |
"editor.fontSize" : 14, | |
"files.associations" : { | |
".huskyrc" : "json", | |
".prettierrc" : "json", | |
".lintstagedrc" : "json" | |
}, | |
"github.copilot.enable" : { | |
"*": true, | |
"plaintext": true, | |
"markdown": true, | |
"scminput": false, | |
"yaml": true | |
}, | |
"editor.wordWrap" : "on", | |
"terminal.integrated.shell.osx" : "\/bin\/zsh", | |
"editor.lineHeight" : 28, | |
"gitlens.advanced.messages" : { | |
"suppressLineUncommittedWarning" : true | |
}, | |
"workbench.editor.enablePreview" : false, | |
"liveServer.settings.donotShowInfoMsg" : true, | |
"security.workspace.trust.untrustedFiles" : "newWindow", | |
"search.exclude" : { | |
"**\/tmp" : true, | |
"package-lock.json" : true, | |
"**\/node_modules" : true, | |
"ios" : true, | |
"**\/.git" : true, | |
"**\/bower_components" : true, | |
"**\/dist" : true, | |
"node_modules\/*" : true, | |
"yarn.lock" : true | |
}, | |
"workbench.editorAssociations" : { | |
"*.ipynb" : "jupyter.notebook.ipynb" | |
}, | |
"explorer.confirmDragAndDrop" : false, | |
"gitlens.hovers.currentLine.over" : "line", | |
"gitlens.blame.compact" : false, | |
"javascript.updateImportsOnFileMove.enabled" : "never", | |
"explorer.confirmDelete" : false, | |
"typescript.updateImportsOnFileMove.enabled" : "never", | |
"workbench.colorTheme" : "Monokai Pro (Filter Spectrum)", | |
"editor.accessibilitySupport" : "off", | |
"editor.tabSize" : 2, | |
"workbench.editor.untitled.hint" : "hidden", | |
"editor.fontFamily" : "Monaco, 'Courier New', monospace", | |
"workbench.iconTheme": "Monokai Pro (Filter Spectrum) Icons", | |
"terminal.integrated.env.osx": { | |
"FIG_NEW_SESSION": "1" | |
}, | |
"svelte.plugin.svelte.useNewTransformation": false, | |
"svelte.plugin.svelte.note-new-transformation": false, | |
"[python]": { | |
"editor.formatOnType": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment