-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #456 from manala/lazy/zsh
[Lazy] Switch to zsh / oh-my-zsh / starship
- Loading branch information
Showing
28 changed files
with
689 additions
and
554 deletions.
There are no files selected for viewing
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
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
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Starship config template | ||
# Don't edit this file directly. Instead, set config in project .manala.yaml, and run `manala up`. | ||
|
||
format = """ | ||
[╭─](cyan)$username$hostname$directory$direnv$env_var$custom | ||
[╰](cyan) $cmd_duration$character""" | ||
|
||
[username] | ||
show_always = true | ||
format = '[$user]($style)@' | ||
style_user = 'yellow' | ||
|
||
[hostname] | ||
ssh_only = false | ||
style = 'yellow' | ||
|
||
[directory] | ||
truncation_length = 1 | ||
truncation_symbol = '…/' | ||
read_only = '' | ||
style = 'cyan' | ||
|
||
[direnv] | ||
disabled = false | ||
|
||
{{- if .Vars.system.starship.config }} | ||
|
||
{{ .Vars.system.starship.config | trim }} | ||
{{- end }} |
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
4 changes: 3 additions & 1 deletion
4
...s/.manala/etc/profile.d/zz-direnv.sh.tmpl → lazy.ansible/.manala/etc/zsh/.zprofile
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
eval "$(direnv hook bash)" | ||
########## | ||
# Direnv # | ||
########## | ||
|
||
# Config directory | ||
export DIRENV_CONFIG=/etc/direnv | ||
|
Oops, something went wrong.