diff options
author | David Runge <dave@sleepmap.de> | 2021-09-30 00:15:34 +0200 |
---|---|---|
committer | David Runge <dave@sleepmap.de> | 2021-09-30 00:15:34 +0200 |
commit | dcb83900b48477217f9ddd3872a0a810a4168f38 (patch) | |
tree | b7673bc6571a205b26f9d62a835ad1fec785c1ad | |
parent | 90386fb5c84eb35e9a9686044061b633093599ca (diff) | |
download | dotfiles-dcb83900b48477217f9ddd3872a0a810a4168f38.tar.gz dotfiles-dcb83900b48477217f9ddd3872a0a810a4168f38.tar.bz2 dotfiles-dcb83900b48477217f9ddd3872a0a810a4168f38.tar.xz dotfiles-dcb83900b48477217f9ddd3872a0a810a4168f38.zip |
starship: Add simple config
.config/starship.toml:
Add simple config to always show username and host and to truncate
directories after eight components.
-rw-r--r-- | .config/starship.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.config/starship.toml b/.config/starship.toml new file mode 100644 index 0000000..ec4c2c5 --- /dev/null +++ b/.config/starship.toml @@ -0,0 +1,9 @@ +[directory] +truncation_length = 8 +truncation_symbol = "…/" + +[hostname] +ssh_only = false + +[username] +show_always = true |