2022-02-08 19:53:55 +01:00
|
|
|
lsps := "
|
2022-07-06 22:41:47 +02:00
|
|
|
eslint
|
2022-02-08 19:53:55 +01:00
|
|
|
lua-language-server
|
|
|
|
rust-analyzer
|
2022-05-06 14:04:55 +02:00
|
|
|
shellcheck
|
|
|
|
shfmt
|
2022-04-10 15:19:39 +02:00
|
|
|
taplo-cli
|
2022-07-09 23:19:09 +02:00
|
|
|
tidy
|
2022-02-08 19:53:55 +01:00
|
|
|
vscode-langservers-extracted
|
|
|
|
yaml-language-server
|
2022-06-26 18:19:13 +02:00
|
|
|
zls-bin
|
2022-02-08 19:53:55 +01:00
|
|
|
"
|
|
|
|
|
2022-10-03 11:41:49 +02:00
|
|
|
install-scripts target=(`echo $HOME` + "/.local"):
|
2022-02-08 18:49:25 +01:00
|
|
|
ln -sf \
|
2022-02-16 00:29:50 +01:00
|
|
|
`pwd`/scripts/{start-joshuto,withjava} \
|
2022-10-03 11:41:49 +02:00
|
|
|
{{target}}/bin
|
2022-04-21 00:09:48 +02:00
|
|
|
|
2022-10-03 11:41:49 +02:00
|
|
|
cd scripts/randomwallpaper && zig build -Drelease-fast -p {{target}}
|
2022-10-16 20:31:31 +02:00
|
|
|
cd scripts/vinput && zig build -Drelease-fast -p {{target}}
|
2022-10-03 11:41:49 +02:00
|
|
|
cd scripts/playtwitch && gyro build -Drelease-fast -p {{target}}
|
2022-10-05 15:50:01 +02:00
|
|
|
cd scripts/prompt && gyro build -Drelease-fast -p {{target}}
|
2022-10-03 11:41:49 +02:00
|
|
|
cd scripts/mzteinit && gyro build -Drelease-fast -p {{target}}
|
2022-04-21 00:09:48 +02:00
|
|
|
|
2022-02-08 19:53:55 +01:00
|
|
|
install-lsps-paru:
|
|
|
|
#!/bin/sh
|
|
|
|
paru -S --needed --noconfirm {{replace(lsps, "\n", " ")}}
|
|
|
|
|
2022-03-20 23:15:25 +01:00
|
|
|
cargo install prosemd-lsp
|
|
|
|
|
2022-02-08 19:53:55 +01:00
|
|
|
if which opam &> /dev/null; then
|
|
|
|
opam install --yes \
|
|
|
|
ocaml-lsp-server \
|
|
|
|
ocamlformat
|
|
|
|
fi
|
2022-02-08 19:57:27 +01:00
|
|
|
|
2022-10-18 23:03:39 +02:00
|
|
|
|
|
|
|
install-mzte-nv:
|
|
|
|
cd mzte_nv && zig build -Drelease-fast
|
|
|
|
cp mzte_nv/zig-out/lib/libmzte_nv.so ~/.local/share/nvim/mzte_nv.so
|