dotter/vim_dep.sh

12 lines
329 B
Bash
Raw Permalink Normal View History

2021-11-26 14:30:29 +00:00
#!/bin/bash
if type npm > /dev/null; then
npm i -g typescript typescript-language-server jsctags dockerfile-language-server-nodejs
fi
if type go > /dev/null; then
2021-11-26 17:37:16 +00:00
go install github.com/sourcegraph/go-langserver@latest
go install github.com/jstemmer/gotags@latest
2022-10-23 13:32:02 +00:00
go install github.com/cweill/gotests/gotests@latest
2022-11-03 08:35:38 +00:00
fi