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
# /etc/wsl.conf | |
[network] | |
generateResolvConf = false | |
# /etc/resolv.conf | |
nameserver 8.8.8.8 | |
nameserver 1.1.1.1 |
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
#region Custom Function Definitions | |
Function Test-Administrator { | |
$CurrentUser = [Security.Principal.WindowsIdentity]::GetCurrent() | |
$AdministratorRole = [Security.Principal.WindowsBuiltInRole] "Administrator" | |
([Security.Principal.WindowsPrincipal]$CurrentUser).IsInRole($AdministratorRole) | |
} | |
#endregion | |
#region Prompt Prep | |
# Set ENV for elevated status |
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
{ | |
"name": "Default colors dark", | |
"type": "dark", | |
"colors": { | |
// Base colors | |
"focusBorder": "#007fd4", | |
"foreground": "#cccccc", | |
"widget.shadow": "#0000005c", | |
// "selection.background": // null |