20 lines
434 B
Bash
20 lines
434 B
Bash
#!/usr/bin/env bash
|
|
|
|
DEST=${1:-/etc/skel}
|
|
LAZY_DEST=${DEST}/.config/nvim/lua/plugins
|
|
|
|
# PlatformIO wrapper for neovim written iua.
|
|
conf_print_platformio() {
|
|
cat <<EOF
|
|
return {
|
|
"anurag3301/nvim-platformio.lua",
|
|
dependencies = {
|
|
{ "akinsho/nvim-toggleterm.lua" },
|
|
{ "nvim-telescope/telescope.nvim" },
|
|
{ "nvim-lua/plenary.nvim" },
|
|
},
|
|
}
|
|
EOF
|
|
}
|
|
conf_print_platformio | tee ${LAZY_DEST}/platformio.lua
|