mirror of
https://git.disroot.org/FollieHiyuki/dotfiles.git
synced 2024-12-12 17:18:22 -05:00
13 lines
299 B
Plaintext
13 lines
299 B
Plaintext
|
#!/bin/sh -e
|
||
|
|
||
|
current_path="$PWD"
|
||
|
server_path="${XDG_DATA_HOME:-$HOME/.local/share}/nvim/lsp/tailwindcss"
|
||
|
|
||
|
[ ! -d "${server_path}" ] && mkdir -p "${server_path}"
|
||
|
cd ${server_path}
|
||
|
|
||
|
[ ! -f package.json ] && npm init -y --scope=lsp || true
|
||
|
npm install @tailwindcss/language-server
|
||
|
|
||
|
cd ${current_path}
|