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
| #requires -Version 2 -Modules posh-git | |
| function Write-Theme { | |
| param( | |
| [bool] | |
| $lastCommandFailed, | |
| [string] | |
| $with | |
| ) |
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
| Windows Registry Editor Version 5.00 | |
| ; Open files | |
| [HKEY_CLASSES_ROOT\*\shell\Open with VS Code] | |
| @="Edit with VS Code" | |
| "Icon"="C:\\Program Files\\Microsoft VS Code\\Code.exe,0" | |
| [HKEY_CLASSES_ROOT\*\shell\Open with VS Code\command] | |
| @="\"C:\\Program Files\\Microsoft VS Code\\Code.exe\" \"%1\"" | |
| ; This will make it appear when you right click ON a folder |
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
| #!/bin/bash | |
| # | |
| # Sets bash prompt to | |
| # [date time] directory (git) | |
| # With color scheme from VSC Dracula | |
| # https://github.com/dracula/visual-studio-code/blob/master/src/dracula.yml | |
| # Based on work from Scott Woods | |
| # https://gist.github.com/woods/31967 | |
| # Returns 255 color from hex argument |