11 lines
336 B
Bash
Executable file
11 lines
336 B
Bash
Executable file
#!/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 python" #+"MasonInstall bash-language-server clangd gopls texlab"
|