mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
10 lines
308 B
Bash
Executable File
10 lines
308 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
git clone --recurse-submodules --depth=1 https://github.com/zigtools/zls .
|
|
zig build
|
|
mv zig-out/bin/zls .
|
|
rm -rf zig-cache zig-out src tests
|
|
cat <<EOF >zls.json
|
|
{"zig_lib_path":"$(dirname $(which zig))/lib/zig","enable_snippets":true,"warn_style":true,"enable_semantic_tokens":true}
|
|
EOF
|