File tree 8 files changed +31
-1
lines changed
addon-metadata/pimp-my-shell
8 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 1
1
name : pimp-my-shell
2
2
repository : .
3
3
version : " "
4
- install_date : " 2024-03-25T12:39:37 -03:00"
4
+ install_date : " 2024-03-25T12:43:17 -03:00"
5
5
project_files :
6
6
- web-build/Dockerfile.pimp-my-shell
7
7
- homeadditions/.bashrc.d/pimp-my-shell
8
8
- config.pimp-my-shell.yaml
9
9
- commands/web/ahoy
10
10
- homeadditions/.local/share/bash-completion/completions/ahoy
11
+ - homeadditions/.config/starship.toml
11
12
global_files : []
12
13
removal_actions : []
Original file line number Diff line number Diff line change @@ -18,3 +18,6 @@ export _ZL_DATA
18
18
if [[ "$BASHOPTS" =~ login_shell ]]; then
19
19
eval "$(lua /opt/z.lua/z.lua --init bash enhanced once fzf)"
20
20
fi
21
+
22
+ # starship prompt
23
+ eval "$(starship init bash)"
Original file line number Diff line number Diff line change
1
+ # ddev-generated
2
+ [git_status ]
3
+ # Disabling git_status to make it faster and likely not very useful on ddev
4
+ # You can edit this file and remove #ddev-generated from the first line OR you
5
+ # can add STARSHIP_CONFIG with reference to a different file.
6
+ disabled =true
7
+
8
+ [directory ]
9
+ # 3 it's a bit small for most projects
10
+ truncation_length =6
Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ RUN mkdir -p /opt/fzf && cd /opt/fzf && git init && git remote add origin https:
4
4
RUN mkdir -p /opt/fzf-git.sh && cd /opt/fzf-git.sh && git init && git remote add origin https://github.com/junegunn/fzf-git.sh.git && git fetch --depth 1 origin 0f1e52079ffd9741eec723f8fd92aa09f376602f && git checkout FETCH_HEAD
5
5
RUN wget -q https://github.com/sharkdp/bat/releases/download/v0.24.0/bat_0.24.0_`dpkg --print-architecture`.deb -O bat.deb && dpkg -i bat.deb && rm bat.deb
6
6
RUN mkdir -p /opt/z.lua && wget https://github.com/skywind3000/z.lua/archive/refs/tags/1.8.18.zip -qO- | bsdtar xf - --strip-components=1 -C /opt/z.lua
7
+ RUN curl -sS https://starship.rs/install.sh | sh -s -- -y -v v1.18.1
Original file line number Diff line number Diff line change @@ -18,3 +18,6 @@ export _ZL_DATA
18
18
if [[ "$BASHOPTS" =~ login_shell ]]; then
19
19
eval "$(lua /opt/z.lua/z.lua --init bash enhanced once fzf)"
20
20
fi
21
+
22
+ # starship prompt
23
+ eval "$(starship init bash)"
Original file line number Diff line number Diff line change
1
+ # ddev-generated
2
+ [git_status ]
3
+ # Disabling git_status to make it faster and likely not very useful on ddev
4
+ # You can edit this file and remove #ddev-generated from the first line OR you
5
+ # can add STARSHIP_CONFIG with reference to a different file.
6
+ disabled =true
7
+
8
+ [directory ]
9
+ # 3 it's a bit small for most projects
10
+ truncation_length =6
Original file line number Diff line number Diff line change @@ -5,3 +5,4 @@ project_files:
5
5
- config.pimp-my-shell.yaml
6
6
- commands/web/ahoy
7
7
- homeadditions/.local/share/bash-completion/completions/ahoy
8
+ - homeadditions/.config/starship.toml
Original file line number Diff line number Diff line change @@ -4,3 +4,4 @@ RUN mkdir -p /opt/fzf && cd /opt/fzf && git init && git remote add origin https:
4
4
RUN mkdir -p /opt/fzf-git.sh && cd /opt/fzf-git.sh && git init && git remote add origin https://github.com/junegunn/fzf-git.sh.git && git fetch --depth 1 origin 0f1e52079ffd9741eec723f8fd92aa09f376602f && git checkout FETCH_HEAD
5
5
RUN wget -q https://github.com/sharkdp/bat/releases/download/v0.24.0/bat_0.24.0_`dpkg --print-architecture`.deb -O bat.deb && dpkg -i bat.deb && rm bat.deb
6
6
RUN mkdir -p /opt/z.lua && wget https://github.com/skywind3000/z.lua/archive/refs/tags/1.8.18.zip -qO- | bsdtar xf - --strip-components=1 -C /opt/z.lua
7
+ RUN curl -sS https://starship.rs/install.sh | sh -s -- -y -v v1.18.1
You can’t perform that action at this time.
0 commit comments