Last active
March 28, 2024 03:57
-
-
Save rnarayana/c15cbd243fbc1015c4eb5624241f5a95 to your computer and use it in GitHub Desktop.
Windows Terminal Configuration
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
if ($host.Name -eq 'ConsoleHost') | |
{ | |
Import-Module PSReadLine | |
} | |
Import-Module posh-git | |
$env:POSH_GIT_ENABLED = $true | |
Import-Module PSKubectlCompletion | |
Set-Alias k -Value kubectl | |
$env:KUBE_EDITOR='code --wait' | |
Register-KubectlCompletion | |
# Set-PoshPrompt -Theme pixelrobots | |
oh-my-posh init pwsh --config ~/.oh-my-posh.omp.json | Invoke-Expression | |
#oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH\powerlevel10k_rainbow.omp.json" | Invoke-Expression | |
Import-Module -Name Terminal-Icons |
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
{ | |
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
"blocks": [ | |
{ | |
"alignment": "left", | |
"segments": [ | |
{ | |
"background": "#d3d7cf", | |
"foreground": "#000000", | |
"leading_diamond": "\u256d\u2500\ue0b2", | |
"style": "diamond", | |
"template": " {{ if .WSL }}WSL at {{ end }}{{.Icon}} ", | |
"type": "os" | |
}, | |
{ | |
"background": "#3465a4", | |
"foreground": "#e4e4e4", | |
"powerline_symbol": "\ue0b0", | |
"properties": { | |
"home_icon": "~", | |
"style": "full" | |
}, | |
"style": "powerline", | |
"template": " \uf07c {{ .Path }} ", | |
"type": "path" | |
}, | |
{ | |
"background": "#ebcc34", | |
"foreground": "#000000", | |
// "leading_diamond": "\ue0b6", | |
"style": "powerline", | |
"powerline_symbol": "\ue0b0", | |
"template": " \u2388 {{.Context}} :: {{if .Namespace}}{{.Namespace}}{{else}}default{{end}} ", | |
"trailing_diamond": "\ue0b0", | |
"type": "kubectl" | |
}, | |
{ | |
"background": "#4e9a06", | |
"background_templates": [ | |
"{{ if or (.Working.Changed) (.Staging.Changed) }}#c4a000{{ end }}", | |
"{{ if and (gt .Ahead 0) (gt .Behind 0) }}#f26d50{{ end }}", | |
"{{ if gt .Ahead 0 }}#89d1dc{{ end }}", | |
"{{ if gt .Behind 0 }}#4e9a06{{ end }}" | |
], | |
"foreground": "#000000", | |
"powerline_symbol": "\ue0b0", | |
"properties": { | |
"branch_icon": "\uf126 ", | |
"fetch_stash_count": true, | |
"fetch_status": true, | |
"fetch_upstream_icon": true | |
}, | |
"style": "powerline", | |
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ", | |
"type": "git" | |
} | |
], | |
"type": "prompt" | |
}, | |
{ | |
"alignment": "right", | |
"segments": [ | |
{ | |
"background": "#689f63", | |
"foreground": "#ffffff", | |
"invert_powerline": true, | |
"powerline_symbol": "\ue0b2", | |
"properties": { | |
"fetch_version": true | |
}, | |
"style": "powerline", | |
"template": " {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }} \ue718 ", | |
"type": "node" | |
}, | |
{ | |
"background": "#ffff66", | |
"foreground": "#111111", | |
"invert_powerline": true, | |
"powerline_symbol": "\ue0b2", | |
"style": "powerline", | |
"template": " \uf0ad ", | |
"type": "root" | |
}, | |
{ | |
"background": "#c4a000", | |
"foreground": "#000000", | |
"invert_powerline": true, | |
"powerline_symbol": "\ue0b2", | |
"style": "powerline", | |
"template": " {{ .FormattedMs }} \uf252 ", | |
"type": "executiontime" | |
}, | |
{ | |
"background": "#000000", | |
"background_templates": ["{{ if gt .Code 0 }}#cc2222{{ end }}"], | |
"foreground": "#d3d7cf", | |
"invert_powerline": true, | |
"powerline_symbol": "\ue0b2", | |
"properties": { | |
"always_enabled": true | |
}, | |
"style": "powerline", | |
"template": " {{ if gt .Code 0 }}{{ reason .Code }}{{ else }}\uf42e{{ end }} ", | |
"type": "status" | |
}, | |
{ | |
"background": "#d3d7cf", | |
"foreground": "#000000", | |
"invert_powerline": true, | |
"style": "diamond", | |
"template": " {{ .CurrentDate | date .Format }} \uf017 ", | |
"trailing_diamond": "\ue0b0\u2500\u256e", | |
"type": "time" | |
} | |
], | |
"type": "prompt" | |
}, | |
{ | |
"alignment": "left", | |
"newline": true, | |
"segments": [ | |
{ | |
"foreground": "#d3d7cf", | |
"style": "plain", | |
"template": "\u2570\u2500", | |
"type": "text" | |
} | |
], | |
"type": "prompt" | |
}, | |
{ | |
"segments": [ | |
{ | |
"foreground": "#d3d7cf", | |
"style": "plain", | |
"template": "\u2500\u256f", | |
"type": "text" | |
} | |
], | |
"type": "rprompt" | |
} | |
], | |
"console_title_template": "{{ .Shell }} in {{ .Folder }}", | |
"final_space": true, | |
"version": 2 | |
} |
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
Install oh-my-posh using choco | |
Install-Module -Name PSReadLine -Repository PSGallery | |
Install-Module -Name posh-git -Repository PSGallery | |
Install-Module -Name Terminal-Icons -Repository PSGallery | |
Install-Module -Name PSKubectlCompletion -Repository PSGallery |
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
sudo apt install golang-go | |
go get -u github.com/justjanne/powerline-go | |
Add in ~/.bashrc: | |
GOPATH=$HOME/go | |
function _update_ps1() { | |
PS1="$($GOPATH/bin/powerline-go -error $?)" | |
} | |
if [ "$TERM" != "linux" ] && [ -f "$GOPATH/bin/powerline-go" ]; then | |
PROMPT_COMMAND="_update_ps1; $PROMPT_COMMAND" | |
fi |
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
{ | |
"$help": "https://aka.ms/terminal-documentation", | |
"$schema": "https://aka.ms/terminal-profiles-schema", | |
"actions": | |
[ | |
{ | |
"command": | |
{ | |
"action": "copy", | |
"singleLine": false | |
}, | |
"keys": "ctrl+c" | |
}, | |
{ | |
"command": "paste", | |
"keys": "ctrl+v" | |
}, | |
{ | |
"command": "find", | |
"keys": "ctrl+shift+f" | |
}, | |
{ | |
"command": | |
{ | |
"action": "splitPane", | |
"split": "auto", | |
"splitMode": "duplicate" | |
}, | |
"keys": "alt+shift+d" | |
} | |
], | |
"copyFormatting": "none", | |
"copyOnSelect": true, | |
"defaultProfile": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"launchMode": "maximized", | |
"profiles": | |
{ | |
"defaults": | |
{ | |
"closeOnExit": "graceful", | |
"colorScheme": "Campbell", | |
"cursorColor": "#FFFFFF", | |
"cursorShape": "bar", | |
"font": | |
{ | |
"face": "Terminess Nerd Font", | |
"size": 14 | |
} | |
}, | |
"list": | |
[ | |
{ | |
"backgroundImageStretchMode": "uniformToFill", | |
"colorScheme": "Tango Dark", | |
"cursorShape": "bar", | |
"experimental.retroTerminalEffect": false, | |
"font": | |
{ | |
"size": 15 | |
}, | |
"guid": "{574e775e-4f2a-5b96-ac1e-a2962a402336}", | |
"hidden": false, | |
"name": "PowerShell", | |
"opacity": 100, | |
"source": "Windows.Terminal.PowershellCore", | |
"startingDirectory": "C:\\Repos", | |
"useAcrylic": true | |
}, | |
{ | |
"guid": "{5a9a2146-e8f3-5bca-9ac4-0cf1e0c06f85}", | |
"hidden": false, | |
"name": "Developer Command Prompt for VS 2022", | |
"source": "Windows.Terminal.VisualStudio" | |
}, | |
{ | |
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}", | |
"hidden": false, | |
"name": "Command Prompt" | |
} | |
] | |
}, | |
"schemes": | |
[ | |
{ | |
"background": "#0C0C0C", | |
"black": "#0C0C0C", | |
"blue": "#0037DA", | |
"brightBlack": "#767676", | |
"brightBlue": "#3B78FF", | |
"brightCyan": "#61D6D6", | |
"brightGreen": "#16C60C", | |
"brightPurple": "#B4009E", | |
"brightRed": "#E74856", | |
"brightWhite": "#F2F2F2", | |
"brightYellow": "#F9F1A5", | |
"cursorColor": "#FFFFFF", | |
"cyan": "#3A96DD", | |
"foreground": "#CCCCCC", | |
"green": "#13A10E", | |
"name": "Campbell", | |
"purple": "#881798", | |
"red": "#C50F1F", | |
"selectionBackground": "#FFFFFF", | |
"white": "#CCCCCC", | |
"yellow": "#C19C00" | |
}, | |
{ | |
"background": "#012456", | |
"black": "#0C0C0C", | |
"blue": "#0037DA", | |
"brightBlack": "#767676", | |
"brightBlue": "#3B78FF", | |
"brightCyan": "#61D6D6", | |
"brightGreen": "#16C60C", | |
"brightPurple": "#B4009E", | |
"brightRed": "#E74856", | |
"brightWhite": "#F2F2F2", | |
"brightYellow": "#F9F1A5", | |
"cursorColor": "#FFFFFF", | |
"cyan": "#3A96DD", | |
"foreground": "#CCCCCC", | |
"green": "#13A10E", | |
"name": "Campbell Powershell", | |
"purple": "#881798", | |
"red": "#C50F1F", | |
"selectionBackground": "#FFFFFF", | |
"white": "#CCCCCC", | |
"yellow": "#C19C00" | |
}, | |
{ | |
"background": "#282C34", | |
"black": "#282C34", | |
"blue": "#61AFEF", | |
"brightBlack": "#5A6374", | |
"brightBlue": "#61AFEF", | |
"brightCyan": "#56B6C2", | |
"brightGreen": "#98C379", | |
"brightPurple": "#C678DD", | |
"brightRed": "#E06C75", | |
"brightWhite": "#DCDFE4", | |
"brightYellow": "#E5C07B", | |
"cursorColor": "#FFFFFF", | |
"cyan": "#56B6C2", | |
"foreground": "#DCDFE4", | |
"green": "#98C379", | |
"name": "One Half Dark", | |
"purple": "#C678DD", | |
"red": "#E06C75", | |
"selectionBackground": "#FFFFFF", | |
"white": "#DCDFE4", | |
"yellow": "#E5C07B" | |
}, | |
{ | |
"background": "#FAFAFA", | |
"black": "#383A42", | |
"blue": "#0184BC", | |
"brightBlack": "#4F525D", | |
"brightBlue": "#61AFEF", | |
"brightCyan": "#56B5C1", | |
"brightGreen": "#98C379", | |
"brightPurple": "#C577DD", | |
"brightRed": "#DF6C75", | |
"brightWhite": "#FFFFFF", | |
"brightYellow": "#E4C07A", | |
"cursorColor": "#4F525D", | |
"cyan": "#0997B3", | |
"foreground": "#383A42", | |
"green": "#50A14F", | |
"name": "One Half Light", | |
"purple": "#A626A4", | |
"red": "#E45649", | |
"selectionBackground": "#FFFFFF", | |
"white": "#FAFAFA", | |
"yellow": "#C18301" | |
}, | |
{ | |
"background": "#002B36", | |
"black": "#002B36", | |
"blue": "#268BD2", | |
"brightBlack": "#073642", | |
"brightBlue": "#839496", | |
"brightCyan": "#93A1A1", | |
"brightGreen": "#586E75", | |
"brightPurple": "#6C71C4", | |
"brightRed": "#CB4B16", | |
"brightWhite": "#FDF6E3", | |
"brightYellow": "#657B83", | |
"cursorColor": "#FFFFFF", | |
"cyan": "#2AA198", | |
"foreground": "#839496", | |
"green": "#859900", | |
"name": "Solarized Dark", | |
"purple": "#D33682", | |
"red": "#DC322F", | |
"selectionBackground": "#FFFFFF", | |
"white": "#EEE8D5", | |
"yellow": "#B58900" | |
}, | |
{ | |
"background": "#FDF6E3", | |
"black": "#002B36", | |
"blue": "#268BD2", | |
"brightBlack": "#073642", | |
"brightBlue": "#839496", | |
"brightCyan": "#93A1A1", | |
"brightGreen": "#586E75", | |
"brightPurple": "#6C71C4", | |
"brightRed": "#CB4B16", | |
"brightWhite": "#FDF6E3", | |
"brightYellow": "#657B83", | |
"cursorColor": "#002B36", | |
"cyan": "#2AA198", | |
"foreground": "#657B83", | |
"green": "#859900", | |
"name": "Solarized Light", | |
"purple": "#D33682", | |
"red": "#DC322F", | |
"selectionBackground": "#FFFFFF", | |
"white": "#EEE8D5", | |
"yellow": "#B58900" | |
}, | |
{ | |
"background": "#000000", | |
"black": "#000000", | |
"blue": "#3465A4", | |
"brightBlack": "#555753", | |
"brightBlue": "#729FCF", | |
"brightCyan": "#34E2E2", | |
"brightGreen": "#8AE234", | |
"brightPurple": "#AD7FA8", | |
"brightRed": "#EF2929", | |
"brightWhite": "#EEEEEC", | |
"brightYellow": "#FCE94F", | |
"cursorColor": "#FFFFFF", | |
"cyan": "#06989A", | |
"foreground": "#D3D7CF", | |
"green": "#4E9A06", | |
"name": "Tango Dark", | |
"purple": "#75507B", | |
"red": "#CC0000", | |
"selectionBackground": "#FFFFFF", | |
"white": "#D3D7CF", | |
"yellow": "#C4A000" | |
}, | |
{ | |
"background": "#FFFFFF", | |
"black": "#000000", | |
"blue": "#3465A4", | |
"brightBlack": "#555753", | |
"brightBlue": "#729FCF", | |
"brightCyan": "#34E2E2", | |
"brightGreen": "#8AE234", | |
"brightPurple": "#AD7FA8", | |
"brightRed": "#EF2929", | |
"brightWhite": "#EEEEEC", | |
"brightYellow": "#FCE94F", | |
"cursorColor": "#000000", | |
"cyan": "#06989A", | |
"foreground": "#555753", | |
"green": "#4E9A06", | |
"name": "Tango Light", | |
"purple": "#75507B", | |
"red": "#CC0000", | |
"selectionBackground": "#FFFFFF", | |
"white": "#D3D7CF", | |
"yellow": "#C4A000" | |
}, | |
{ | |
"background": "#000000", | |
"black": "#000000", | |
"blue": "#000080", | |
"brightBlack": "#808080", | |
"brightBlue": "#0000FF", | |
"brightCyan": "#00FFFF", | |
"brightGreen": "#00FF00", | |
"brightPurple": "#FF00FF", | |
"brightRed": "#FF0000", | |
"brightWhite": "#FFFFFF", | |
"brightYellow": "#FFFF00", | |
"cursorColor": "#FFFFFF", | |
"cyan": "#008080", | |
"foreground": "#C0C0C0", | |
"green": "#008000", | |
"name": "Vintage", | |
"purple": "#800080", | |
"red": "#800000", | |
"selectionBackground": "#FFFFFF", | |
"white": "#C0C0C0", | |
"yellow": "#808000" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment