11 lines
336 B
Bash
11 lines
336 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
|
||
|
# INSTALL PLUG
|
||
|
sh -c 'curl -fLo "${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/autoload/plug.vim --create-dirs \
|
||
|
https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim'
|
||
|
|
||
|
|
||
|
# INSTALL CONFIG
|
||
|
nvim +PlugInstall +"TSInstall c haskell bash go pythoni" +"MasonInstall bash-language-server clangd gopls texlab"
|