Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
bbd7660c0a | ||
|
c35e62cc96 |
@ -8,13 +8,12 @@ $env:VIRTUAL_ENV_DISABLE_PROMPT = "True"
|
||||
|
||||
oh-my-posh init pwsh --config (Join-Path $profile_folder theme.omp.json) | Invoke-Expression
|
||||
|
||||
function docker {
|
||||
wsl -- docker $args
|
||||
}
|
||||
|
||||
Import-Module posh-ssh
|
||||
Import-Module posh-venv
|
||||
Import-Module DockerCompletion
|
||||
Import-Module Set-PsEnv
|
||||
|
||||
Enable-Dotenv
|
||||
|
||||
Set-PSReadLineOption -PredictionSource History
|
||||
Set-PSReadLineOption -HistorySearchCursorMovesToEnd
|
||||
@ -31,3 +30,7 @@ if (Get-Command kubectl -ErrorAction SilentlyContinue) {
|
||||
if (Get-Command helm -ErrorAction SilentlyContinue) {
|
||||
helm completion powershell | Out-String | Invoke-Expression
|
||||
}
|
||||
|
||||
if (Get-Command glab -ErrorAction SilentlyContinue) {
|
||||
glab completion -s powershell | Out-String | Invoke-Expression
|
||||
}
|
||||
|
@ -12,9 +12,7 @@
|
||||
},
|
||||
{
|
||||
"foreground": "#06884b",
|
||||
"foreground_templates": [
|
||||
"{{ if gt .Code 0 }}#e61010{{ end }}"
|
||||
],
|
||||
"foreground_templates": ["{{ if gt .Code 0 }}#e61010{{ end }}"],
|
||||
"properties": {
|
||||
"always_enabled": true
|
||||
},
|
||||
@ -96,11 +94,26 @@
|
||||
"type": "path"
|
||||
},
|
||||
{
|
||||
"foreground": "#193549",
|
||||
"powerline_symbol": "\ue0b0",
|
||||
"type": "git",
|
||||
"style": "powerline",
|
||||
"template": " {{ .Status }} ",
|
||||
"type": "poshgit"
|
||||
"powerline_symbol": "",
|
||||
"foreground": "#193549",
|
||||
"background": "#ffeb3b",
|
||||
"background_templates": [
|
||||
"{{ if or (.Working.Changed) (.Staging.Changed) }}#FFEB3B{{ end }}",
|
||||
"{{ if and (gt .Ahead 0) (gt .Behind 0) }}#FFCC80{{ end }}",
|
||||
"{{ if gt .Ahead 0 }}#B388FF{{ end }}",
|
||||
"{{ if gt .Behind 0 }}#B388FB{{ end }}"
|
||||
],
|
||||
"template": "{{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} {{ .StashCount }}{{ end }}",
|
||||
"properties": {
|
||||
"fetch_status": true,
|
||||
"fetch_stash_count": true,
|
||||
"fetch_upstream_icon": true,
|
||||
"untracked_modes": {
|
||||
"/Users/user/Projects/oh-my-posh/": "no"
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"type": "prompt"
|
||||
|
Loading…
Reference in New Issue
Block a user