X-Git-Url: https://git.josue.xyz/?p=webi-installers%2F.git;a=blobdiff_plain;f=vim-essentials%2Finstall.sh;fp=vim-essentials%2Finstall.sh;h=8c446b3775eaaaba3d1b93d65ad0b19181f8fae6;hp=9be7ed71e7dc3191cad45006494afb1c13de0204;hb=ca7a838c6fde6052124947ff442aa9e6056f5e28;hpb=704265583cff80363fec60c4088f5b91f6d98bd0 diff --git a/vim-essentials/install.sh b/vim-essentials/install.sh index 9be7ed7..8c446b3 100644 --- a/vim-essentials/install.sh +++ b/vim-essentials/install.sh @@ -1,22 +1,28 @@ -webi \ - vim-leader \ - vim-shell \ - vim-sensible \ - vim-viminfo \ - vim-lastplace \ - vim-spell \ - vim-ale \ - vim-prettier \ - vim-whitespace -# done +#!/bin/bash -printf '\n' -printf 'Suggestion: Also check out these great plugins:\n' -printf '\n' -printf ' - vim-nerdtree (better than the default file browser)\n' -printf ' - vim-gui (mouse & clipboard support)\n' -printf ' - vim-devicons (use nerdfont icons in vim)\n' -printf '\n' -printf ' - vim-go (golang linting, etc)\n' -printf ' - vim-rust (rustlang linting, etc)\n' -printf '\n' +function __init_vim_essentials() { + webi \ + vim-leader \ + vim-shell \ + vim-sensible \ + vim-viminfo \ + vim-lastplace \ + vim-spell \ + vim-ale \ + vim-prettier \ + vim-whitespace + # done + + printf '\n' + printf 'Suggestion: Also check out these great plugins:\n' + printf '\n' + printf ' - vim-nerdtree (better than the default file browser)\n' + printf ' - vim-gui (mouse & clipboard support)\n' + printf ' - vim-devicons (use nerdfont icons in vim)\n' + printf '\n' + printf ' - vim-go (golang linting, etc)\n' + printf ' - vim-rust (rustlang linting, etc)\n' + printf '\n' +} + +__init_vim_essentials