Last active
January 25, 2022 22:03
-
-
Save kykosic/677fabd451583b6f8003a580a23465f9 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
SETTINGS | |
{ | |
"files.trimTrailingWhitespace": true, | |
"workbench.tree.indent": 20, | |
"window.nativeTabs": true, | |
"window.restoreFullscreen": true, | |
"window.openFoldersInNewWindow": "on", | |
"editor.rulers": [ | |
100 | |
], | |
"python.dataScience.sendSelectionToInteractiveWindow": false, | |
"window.zoomLevel": 0, | |
"explorer.confirmDelete": false, | |
"rust-analyzer.completion.addCallArgumentSnippets": false, | |
"workbench.startupEditor": "none", | |
"terminal.integrated.fontFamily": "MesloLGS NF", | |
"terminal.integrated.shell.osx": "/bin/zsh", | |
"explorer.confirmDragAndDrop": false, | |
"python.languageServer": "Pylance", | |
"python.insidersChannel": "off", | |
"python.analysis.autoImportCompletions": false, | |
"[rust]": { | |
"editor.formatOnSave": true, | |
}, | |
"[groovy]": { | |
"editor.tabSize": 2, | |
}, | |
"terminal.integrated.env.osx": { | |
"PATH": "" | |
}, | |
"terminal.external.osxExec": "iTerm.app", | |
"liveServer.settings.donotShowInfoMsg": true, | |
"workbench.colorTheme": "Darcula" | |
} | |
KEYBINDINGS MACOS | |
[ | |
{ | |
"key": "cmd+b", | |
"command": "editor.action.revealDefinition", | |
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" | |
}, | |
{ | |
"key": "f12", | |
"command": "-editor.action.revealDefinition", | |
"when": "editorHasDefinitionProvider && editorTextFocus && !isInEmbeddedEditor" | |
}, | |
{ | |
"key": "alt+cmd+left", | |
"command": "workbench.action.navigateBack" | |
}, | |
{ | |
"key": "ctrl+-", | |
"command": "-workbench.action.navigateBack" | |
}, | |
{ | |
"key": "alt+cmd+right", | |
"command": "workbench.action.navigateForward" | |
}, | |
{ | |
"key": "ctrl+shift+-", | |
"command": "-workbench.action.navigateForward" | |
}, | |
{ | |
"key": "ctrl+f", | |
"command": "workbench.action.toggleSidebarVisibility" | |
}, | |
{ | |
"key": "ctrl+h", | |
"command": "workbench.action.focusPreviousGroup" | |
}, | |
{ | |
"key": "ctrl+l", | |
"command": "workbench.action.focusNextGroup" | |
}, | |
{ | |
"key": "cmd+d", | |
"command": "workbench.action.splitEditor" | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment