-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a message after `make sh` to remind that containerd is not compatible with molecule (for test on Mac Silicon)
- Loading branch information
Showing
12 changed files
with
206 additions
and
172 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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
services: | ||
|
||
########## | ||
# System # | ||
########## | ||
|
||
system: | ||
environment: | ||
TERM: ${TERM:-xterm} |
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,24 @@ | ||
# 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 |
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
.manala/etc/profile.d/zz-direnv.sh → .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.