- Python
- Unique Lines
- Djaneiro -Django Snippets
- Django Template
- Sublime Text Keymap
{
"python.linting.enabledWithoutWorkspace": false,
"window.zoomLevel": 0,
"editor.fontSize": 14,
"files.autoSave": "onFocusChange",
"python.pythonPath": "python3",
"python.venvPath": "/Users/oaaburto/.virtualenvs",
"explorer.openEditors.visible": 0,
"workbench.welcome.enabled": false,
"editor.fontFamily": "Fira Mono , Fira Mono , Fira Mono , Fira Mono",
"files.exclude": {
"**/.git": true,
"**/.svn": true,
"**/.hg": true,
"**/CVS": true,
"**/.DS_Store": true,
"**/.idea": true,
"**/__pycache__": true
}
}
// Place your key bindings in this file to overwrite the defaults
[
{
"key": "ctrl+shift+up",
"command": "editor.action.insertCursorAbove",
"when": "editorTextFocus"
},
{
"key": "alt+cmd+up",
"command": "-editor.action.insertCursorAbove",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+down",
"command": "editor.action.insertCursorBelow",
"when": "editorTextFocus"
},
{
"key": "alt+cmd+down",
"command": "-editor.action.insertCursorBelow",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+r",
"command": "python.execInTerminal"
}
]