Created
April 25, 2022 17:19
-
-
Save wh0th3h3llam1/ac98b2120a647a1a8b01b443ff41e01a to your computer and use it in GitHub Desktop.
VS Code Dotfiles
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
// Place your key bindings in this file to override the defaultsauto[] | |
[ | |
{ | |
"key": "ctrl+l ctrl+t", | |
"command": "editor.action.transformToTitlecase" | |
}, | |
{ | |
"key": "ctrl+l ctrl+l", | |
"command": "editor.action.transformToLowercase" | |
}, | |
{ | |
"key": "ctrl+l ctrl+u", | |
"command": "editor.action.transformToUppercase" | |
}, | |
{ | |
"key": "ctrl+l ctrl+o", | |
"command": "editor.action.transposeLetters" | |
}, | |
{ | |
"key": "ctrl+j", | |
"command": "editor.action.joinLines" | |
}, | |
{ | |
"key": "ctrl+shift+up", | |
"command": "editor.action.insertCursorAbove", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+alt+up", | |
"command": "-editor.action.insertCursorAbove", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+shift+down", | |
"command": "editor.action.insertCursorBelow", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+alt+down", | |
"command": "-editor.action.insertCursorBelow", | |
"when": "editorTextFocus" | |
}, | |
{ | |
"key": "ctrl+l ctrl+s", | |
"command": "editor.action.transformToSnakecase" | |
} | |
] |
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
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"name": "Django Local Server", | |
"type": "python", | |
"request": "launch", | |
"program": "${workspaceFolder}\\manage.py", | |
"args": [ | |
"runserver" | |
], | |
"django": true, | |
"justMyCode": false | |
}, | |
{ | |
"name": "Django WAN Server", | |
"type": "python", | |
"request": "launch", | |
"program": "${workspaceFolder}\\manage.py", | |
"args": [ | |
"runserver", | |
"0.0.0.0:8000" | |
], | |
"django": true, | |
"justMyCode": false | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment