diff options
author | Yigit Sever | 2021-11-12 11:30:46 +0300 |
---|---|---|
committer | Yigit Sever | 2021-11-12 11:30:46 +0300 |
commit | 6656ea83d612d27291d0fff9366974ba59406b52 (patch) | |
tree | c451f2c5fe89af17d297265388fa8a570c4bc27d /.config/fish/functions | |
parent | 19a87c0bbcf56224c9de721ffc9e605abbf61c9a (diff) | |
download | dotfiles-6656ea83d612d27291d0fff9366974ba59406b52.tar.gz dotfiles-6656ea83d612d27291d0fff9366974ba59406b52.tar.bz2 dotfiles-6656ea83d612d27291d0fff9366974ba59406b52.zip |
fish: fix prompt spacing
Diffstat (limited to '.config/fish/functions')
-rw-r--r-- | .config/fish/functions/fish_prompt.fish | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/fish/functions/fish_prompt.fish b/.config/fish/functions/fish_prompt.fish index eb90abb..daaadbc 100644 --- a/.config/fish/functions/fish_prompt.fish +++ b/.config/fish/functions/fish_prompt.fish | |||
@@ -18,5 +18,5 @@ function fish_prompt | |||
18 | 18 | ||
19 | set -l cwd $cyan (string join / (string split -rn -m3 / (prompt_pwd))[-3..-1]) | 19 | set -l cwd $cyan (string join / (string split -rn -m3 / (prompt_pwd))[-3..-1]) |
20 | 20 | ||
21 | echo -n -s $marker ' '$cwd $normal ' ' | 21 | echo -n -s $marker ' ' $cwd $normal ' ' |
22 | end | 22 | end |