Files
vim-ale/vim-beyondcode/install.sh
2022-03-07 10:24:04 +00:00

32 lines
565 B
Bash

#!/bin/bash
set -e
set -u
function __init_vim_beyondcode() {
# mostly lightweight, or essential
webi \
vim-leader \
vim-shell \
vim-sensible \
vim-viminfo \
vim-lastplace \
vim-spell \
vim-ale \
vim-prettier \
vim-whitespace
# requires special hardware (mouse) or software (nerdfont)
webi \
vim-gui \
vim-nerdtree \
nerdfont \
vim-devicons
if [ -n "$(command -v go)" ]; then
webi vim-go
fi
# done
}
__init_vim_beyondcode