Compare commits

..

3 commits

3 changed files with 5 additions and 1 deletions

View file

@ -6,6 +6,8 @@ alias n="nano"
alias phpa="sudo update-alternatives --config php" alias phpa="sudo update-alternatives --config php"
# Restart all code-server processes. Sometimes it hangs on first startup # Restart all code-server processes. Sometimes it hangs on first startup
alias restart_vscode="sudo systemctl restart code-server@vlw.service" alias restart_vscode="sudo systemctl restart code-server@vlw.service"
# Force undo and unstage the last commit from git and git remote
alias gitundo="git reset HEAD^ && git push origin +HEAD"
# +-------------------+ # +-------------------+
# | Directory & Files | # | Directory & Files |

View file

@ -6,6 +6,7 @@
"ms-python.debugpy", "ms-python.debugpy",
"ms-python.python", "ms-python.python",
"ms-vscode.hexeditor", "ms-vscode.hexeditor",
"neilbrayfield.php-docblocker",
"ngtystr.ppm-pgm-viewer-for-vscode", "ngtystr.ppm-pgm-viewer-for-vscode",
"njpwerner.autodocstring", "njpwerner.autodocstring",
"xdebug.php-debug" "xdebug.php-debug"

View file

@ -36,5 +36,6 @@
"chat.disableAIFeatures": true, "chat.disableAIFeatures": true,
"editor.snippetSuggestions": "top", "editor.snippetSuggestions": "top",
"emmet.showSuggestionsAsSnippets": true, "emmet.showSuggestionsAsSnippets": true,
"telemetry.telemetryLevel": "off" "telemetry.telemetryLevel": "off",
"php-docblocker.useShortNames": true
} }