refactor: finish moving ssh-* scripts to own installers
[webi-installers/.git] / vim-essentials / install.sh
1 #!/bin/bash
2
3 function __init_vim_essentials() {
4     webi \
5         vim-leader \
6         vim-shell \
7         vim-sensible \
8         vim-viminfo \
9         vim-lastplace \
10         vim-spell \
11         vim-ale \
12         vim-prettier \
13         vim-whitespace
14     # done
15
16     printf '\n'
17     printf 'Suggestion: Also check out these great plugins:\n'
18     printf '\n'
19     printf '    - vim-nerdtree (better than the default file browser)\n'
20     printf '    - vim-gui      (mouse & clipboard support)\n'
21     printf '    - vim-devicons (use nerdfont icons in vim)\n'
22     printf '\n'
23     printf '    - vim-go       (golang linting, etc)\n'
24     printf '    - vim-rust     (rustlang linting, etc)\n'
25     printf '\n'
26 }
27
28 __init_vim_essentials