summaryrefslogtreecommitdiff
path: root/setup-zls.fish
diff options
context:
space:
mode:
Diffstat (limited to 'setup-zls.fish')
-rw-r--r--setup-zls.fish14
1 files changed, 14 insertions, 0 deletions
diff --git a/setup-zls.fish b/setup-zls.fish
new file mode 100644
index 0000000..c9e3713
--- /dev/null
+++ b/setup-zls.fish
@@ -0,0 +1,14 @@
+type zig
+or exit 1
+
+if ! test -d zls;
+ git clone https://github.com/zigtools/zls
+end
+git pull
+
+pushd zls
+zig build -Doptimize=ReleaseSafe
+
+echo "SETUP zls"
+fish_add_path --path (pwd)/zig-out/bin
+popd \ No newline at end of file