dotfiles/justfile
2022-10-16 20:31:31 +02:00

37 lines
876 B
Makefile

lsps := "
eslint
lua-language-server
rust-analyzer
shellcheck
shfmt
taplo-cli
tidy
vscode-langservers-extracted
yaml-language-server
zls-bin
"
install-scripts target=(`echo $HOME` + "/.local"):
ln -sf \
`pwd`/scripts/{start-joshuto,withjava} \
{{target}}/bin
cd scripts/randomwallpaper && zig build -Drelease-fast -p {{target}}
cd scripts/vinput && zig build -Drelease-fast -p {{target}}
cd scripts/playtwitch && gyro build -Drelease-fast -p {{target}}
cd scripts/prompt && gyro build -Drelease-fast -p {{target}}
cd scripts/mzteinit && gyro build -Drelease-fast -p {{target}}
install-lsps-paru:
#!/bin/sh
paru -S --needed --noconfirm {{replace(lsps, "\n", " ")}}
cargo install prosemd-lsp
if which opam &> /dev/null; then
opam install --yes \
ocaml-lsp-server \
ocamlformat
fi