add helix conf and change rust installation to slim down image again
All checks were successful
ci / checkout (push) Successful in 1m27s

This commit is contained in:
R.J. 2025-02-02 20:46:15 +01:00
parent 938c5a7992
commit 4da65198a7
4 changed files with 22 additions and 4 deletions

View file

@ -0,0 +1,2 @@
[unstable]
gc = true

View file

@ -0,0 +1,9 @@
theme = "tokyonight_moon"
[editor]
line-number = "relative"
mouse = true
[editor.file-picker]
hidden = false

View file

@ -0,0 +1,3 @@
[editor.lsp.rust-analyzer.config.check]
command = "clippy"

View file

@ -17,16 +17,20 @@ RUN apk add --no-cache \
lazygit \
most \
k9s \
bash \
curl \
cargo \
git
COPY setup_langs /root/setup_langs
COPY .config /root/.config
RUN curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash
RUN cargo binstall --strategies crate-meta-data jj-cli; cargo binstall lazyjj
RUN apk add --no-cache cargo bash; \
curl -L --proto '=https' --tlsv1.2 -sSf https://raw.githubusercontent.com/cargo-bins/cargo-binstall/main/install-from-binstall-release.sh | bash; \
cargo binstall --strategies crate-meta-data jj-cli; \
cargo binstall lazyjj; \
apk del cargo bash;
ENV TERM="xterm-256color"
ENV COLORTERM="truecolor"
# Set the entrypoint to fish
WORKDIR /root/