Last active
July 28, 2022 14:45
-
-
Save piojanu/2584ad8ad2da1422c5b88c80a1fdbb5e to your computer and use it in GitHub Desktop.
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
{ | |
"workbench.colorTheme": "doom-one", | |
"terminal.integrated.inheritEnv": false, | |
"editor.fontFamily": "'Fira Code', Menlo, Monaco, 'Courier New', monospace", | |
"editor.fontWeight": 500, | |
"debug.console.fontSize": 14, | |
"terminal.integrated.fontSize": 14, | |
"scm.inputFontSize": 14, | |
"editor.minimap.enabled": false, | |
"atomKeymap.promptV3Features": true, | |
"editor.formatOnPaste": true, | |
"git.ignoreLegacyWarning": true, | |
"editor.scrollbar.vertical": "hidden", | |
"editor.scrollbar.horizontal": "hidden", | |
"editor.scrollbar.horizontalScrollbarSize": 0, | |
"editor.scrollbar.verticalScrollbarSize": 0, | |
"editor.rulers": [88], | |
"workbench.editor.showTabs": false, | |
"vim.easymotion": true, | |
"vim.leader": "<space>", | |
"vim.insertModeKeyBindings": [ | |
{ | |
"before": ["ctrl+e"], | |
"commands": ["cursorEnd"] | |
}, | |
], | |
"vim.normalModeKeyBindingsNonRecursive": [ | |
{ | |
"before": ["<leader>", "d"], | |
"commands": ["editor.action.peekDefinition"] | |
}, | |
], | |
"vim.visualModeKeyBindings": [ | |
{ | |
"before": [">"], | |
"commands": ["editor.action.indentLines"] | |
}, | |
{ | |
"before": ["<"], | |
"commands": ["editor.action.outdentLines"] | |
}, | |
], | |
"editor.find.autoFindInSelection": "multiline", | |
"files.autoSave": "onFocusChange", | |
"editor.fontSize": 18, | |
"vim.useSystemClipboard": true, | |
"git.confirmSync": false, | |
"cSpell.userWords": [ | |
"ACKTR", | |
"cnode", | |
"coef", | |
"cpus", | |
"CUDA", | |
"hparams", | |
"nolisten", | |
"noreset", | |
"Objs", | |
"preproc", | |
"randomrepeat", | |
"relu", | |
"simclr", | |
"slurm", | |
"subdir", | |
"submitit", | |
"updt", | |
"viridis", | |
"Xeon", | |
"Xvfb" | |
], | |
"cSpell.languageSettings": [ | |
// This one works with Python | |
{ | |
"languageId": "python", | |
"includeRegExpList": [ | |
"/#.*/", | |
"/('''|\"\"\")[^\\1]+?\\1/g", | |
"strings" | |
] | |
}, | |
// This one works with JavaScript, Typescript, etc | |
{ | |
"languageId": "javascript,typescript", | |
"includeRegExpList": [ | |
"CStyleComment", | |
"strings" | |
] | |
}, | |
// Use with cpp or c files | |
{ | |
"languageId": "cpp,c", | |
// Turn off compound words, because it is only checking strings. | |
"allowCompoundWords": false, | |
// Only check comments and strings | |
"includeRegExpList": [ | |
"CStyleComment", | |
"string" | |
], | |
// Exclude includes, because they are also strings. | |
"ignoreRegExpList": [ | |
"/#include.*/" | |
] | |
} | |
], | |
"python.analysis.autoImportCompletions": false, | |
"git.enableSmartCommit": true, | |
"redhat.telemetry.enabled": false, | |
"editor.tabCompletion": "on", | |
"editor.suggest.localityBonus": true, | |
"sync.gist": "e91cf417582b93b7aaf4c7a9b01be21a", | |
"editor.inlineSuggest.enabled": true, | |
"pythonIndent.trimLinesWithOnlyWhitespace": true, | |
"window.zoomLevel": -1, | |
"github.copilot.enable": { | |
"*": true, | |
"yaml": true, | |
"plaintext": false, | |
"markdown": false, | |
"python": true | |
}, | |
"workbench.activityBar.visible": false, | |
"files.watcherExclude": { | |
"**/.git/objects/**": true, | |
"**/.git/subtree-cache/**": true, | |
"**/node_modules/*/**": true, | |
"**/.trunk/*/**": true, | |
}, | |
"python.defaultInterpreterPath": "/Users/piotr/miniconda3/bin/python", | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment