dotfiles/justfile

39 lines
986 B
Makefile
Raw Normal View History

lsps := "
bash-language-server
lua-language-server
rust-analyzer
taplo-lsp
vscode-langservers-extracted
yaml-language-server
"
install-scripts target=(`echo $HOME` + "/.local/bin"):
cd scripts && zig build-exe \
2022-02-08 18:49:25 +01:00
-lc -lX11 -lXinerama \
randomwallpaper.zig \
2022-02-08 18:49:25 +01:00
-femit-bin={{target}}/randomwallpaper
opam install --yes clap
cd scripts/playtwitch && dune build
cp scripts/playtwitch/_build/default/playtwitch.exe {{target}}/playtwitch
2022-02-08 18:49:25 +01:00
ln -sf \
`pwd`/scripts/{start-joshuto,withjava} \
2022-02-08 18:49:25 +01:00
{{target}}
install-lsps-paru:
#!/bin/sh
paru -S --needed --noconfirm {{replace(lsps, "\n", " ")}}
if which opam &> /dev/null; then
opam install --yes \
ocaml-lsp-server \
ocamlformat
fi
2022-02-08 19:57:27 +01:00
install-prompt:
RUSTFLAGS="-C target-cpu=native" cargo build --release \
--manifest-path prompt/Cargo.toml
strip prompt/target/release/prompt
cp prompt/target/release/prompt ~/.local/bin