mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2025-02-23 21:09:34 -05:00
13 lines
276 B
Bash
Executable File
13 lines
276 B
Bash
Executable File
#!/bin/sh
|
|
|
|
current_path="$PWD"
|
|
server_path="${XDG_DATA_HOME:-$HOME/.local/share}/nvim/lsp/yamlls"
|
|
|
|
[ ! -d "${server_path}" ] && mkdir -p "${server_path}"
|
|
cd ${server_path}
|
|
|
|
[ ! -f package.json ] && yarn init -y || true
|
|
yarn add yaml-language-server@latest
|
|
|
|
cd ${current_path}
|