summaryrefslogtreecommitdiffstats
path: root/.config/fish/functions
diff options
context:
space:
mode:
authorYigit Sever2021-11-12 11:30:46 +0300
committerYigit Sever2021-11-12 11:30:46 +0300
commit6656ea83d612d27291d0fff9366974ba59406b52 (patch)
treec451f2c5fe89af17d297265388fa8a570c4bc27d /.config/fish/functions
parent19a87c0bbcf56224c9de721ffc9e605abbf61c9a (diff)
downloaddotfiles-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.fish2
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 ' '
22end 22end