mirror of
https://github.com/mattn/vim-lsp-settings.git
synced 2025-12-12 20:35:54 +01:00
10 lines
264 B
Bash
Executable File
10 lines
264 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
url="https://raw.githubusercontent.com/v-analyzer/v-analyzer/master/install.vsh"
|
|
|
|
# Replace hard-coded installation path "~/.config/v-analyzer" with "."
|
|
v -e "$(curl -fsSL "$url" | sed 's#~/.config/v-analyzer#.#g')"
|
|
mv bin/v-analyzer v-analyzer
|