From: AJ ONeal Date: Mon, 22 Mar 2021 21:25:38 +0000 (+0000) Subject: vim: update and rename vim-essentials (standard), vim-gui (mouse) X-Git-Url: https://git.josue.xyz/?p=webi-installers%2F.git;a=commitdiff_plain;h=ebce2f6415dc554d58814e1cc27d9eb78575cc66 vim: update and rename vim-essentials (standard), vim-gui (mouse) --- diff --git a/vim-essential b/vim-essential new file mode 120000 index 0000000..33b98c9 --- /dev/null +++ b/vim-essential @@ -0,0 +1 @@ +vim-essentials \ No newline at end of file diff --git a/vim-essentials/README.md b/vim-essentials/README.md new file mode 100644 index 0000000..dc144ca --- /dev/null +++ b/vim-essentials/README.md @@ -0,0 +1,34 @@ +--- +title: vim-essentials +homepage: https://webinstall.dev/vim-essentials +tagline: | + meta package for our recommended vim plugins and settings +--- + +To update (replacing the current version) run `webi vim-essentials`. + +## Cheat Sheet + +> A collection of extremely useful plugins and very simple one-line changes to +> vim's default settings. + +This meta package will install the full set of plugins and settings we +recommended. + +It includes many of the vim plugins available on webinstall.dev such as: + +- [vim-leader](/vim-leader) +- [vim-shell](/vim-shell) +- [vim-sensible](/vim-sensible) +- [vim-viminfo](/vim-viminfo) +- [vim-lastplace](/vim-lastplace) +- [vim-spell](/vim-spell) +- [vim-ale](/vim-ale) +- [vim-prettier](/vim-prettier) +- [vim-whitespace](/vim-whitespace) + +It **DOES NOT** include these, which you may also want: + +- [vim-gui](/vim-gui) (mouse and clipboard support) +- [vim-nerdtree](/vim-nerdtree) +- [vim-devicons](/vim-devicons) diff --git a/vim-essentials/install.sh b/vim-essentials/install.sh new file mode 100644 index 0000000..bc34f2e --- /dev/null +++ b/vim-essentials/install.sh @@ -0,0 +1,18 @@ +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 ' - vim-nerdtree (better than the default file browser)\n' +printf ' - vim-gui (mouse & clipboard support)\n' +printf ' - vim-go (golang linting, etc)\n' +printf '\n' diff --git a/vim-gui/README.md b/vim-gui/README.md new file mode 100644 index 0000000..7064187 --- /dev/null +++ b/vim-gui/README.md @@ -0,0 +1,43 @@ +--- +title: vim-gui +homepage: https://webinstall.dev/vim-gui +tagline: | + vim-gui enables Vim's built-in support for mouse, clipboard, etc +--- + +To update (replacing the current version) run `webi vim-gui`. + +## Cheat Sheet + +Vim has built-in GUI support. + +It is turned off by default and when turned on may not behave exactly as +expected. + +This vim-gui plugin turns on mouse support with insert mode on click, +select-to-copy clipboard, and other GUI options. + +### How to configure manually + +Create the file `~/.vim/plugins/gui.vim`. Add the same contents as +. + +That will look something like this: + +```vim +" turn on mouse support +set mouse=a + +" keep copy-on-select and other GUI options +set clipboard+=autoselect guioptions+=a + +" enter insert mode on left-click +nnoremap i +``` + +You'll then need to update `~/.vimrc` to source that plugin: + +```vim +" Mouse Support: reasonable defaults from webinstall.dev/vim-gui +source ~/.vim/plugins/gui.vim +``` diff --git a/vim-gui/install.sh b/vim-gui/install.sh new file mode 100644 index 0000000..fd04407 --- /dev/null +++ b/vim-gui/install.sh @@ -0,0 +1,36 @@ +#!/bin/bash + +function __init_vim_mouse() { + set -e + set -u + + mkdir -p "$HOME/.vim/plugins" + rm -rf "$HOME/.vim/plugins/mouse.vim" + + echo "" + + if [ ! -e "$HOME/.vimrc" ]; then + touch "$HOME/.vimrc" + fi + + if ! [ -f "$HOME/.vim/plugins/mouse.vim" ]; then + mkdir -p ~/.vim/plugins + WEBI_HOST=${WEBI_HOST:-"https://webinstall.dev"} + curl -fsS -o ~/.vim/plugins/mouse.vim "$WEBI_HOST/packages/vim-mouse/mouse.vim" + fi + + if ! grep 'source.*plugins.mouse.vim' -r ~/.vimrc > /dev/null 2> /dev/null; then + set +e + mkdir -p ~/.vim/plugins + printf '\n" Mouse Support: reasonable defaults from webinstall.dev/vim-mouse\n' >> ~/.vimrc + printf 'source ~/.vim/plugins/mouse.vim\n' >> ~/.vimrc + set -e + echo "added ~/.vim/plugins/mouse.vim" + echo "updated ~/.vimrc with 'source ~/.vim/plugins/mouse.vim'" + echo "" + fi + + echo "vim-mouse enabled with reasonable defaults" +} + +__init_vim_mouse diff --git a/vim-gui/mouse.vim b/vim-gui/mouse.vim new file mode 100644 index 0000000..761cf57 --- /dev/null +++ b/vim-gui/mouse.vim @@ -0,0 +1,8 @@ +" turn on mouse support +set mouse=a + +" keep copy-on-select and other GUI options +set clipboard+=autoselect guioptions+=a + +" enter insert mode on left-click +nnoremap i diff --git a/vim-mouse b/vim-mouse new file mode 120000 index 0000000..fcca5fb --- /dev/null +++ b/vim-mouse @@ -0,0 +1 @@ +vim-gui \ No newline at end of file diff --git a/vim-mouse/README.md b/vim-mouse/README.md deleted file mode 100644 index 6231120..0000000 --- a/vim-mouse/README.md +++ /dev/null @@ -1,43 +0,0 @@ ---- -title: vim-mouse -homepage: https://webinstall.dev/vim-mouse -tagline: | - vim mouse is Vim's built-in mouse support ---- - -To update (replacing the current version) run `webi vim-mouse`. - -## Cheat Sheet - -Vim has built-in mouse support. - -It is turned off by default and when turned on may not behave exactly as -expected. - -This vim-mouse plugin turns on mouse support with insert mode on click, -select-to-copy clipboard, and other GUI options. - -### How to configure manually - -Create the file `~/.vim/plugins/mouse.vim`. Add the same contents as -. - -That will look something like this: - -```vim -" turn on mouse support -set mouse=a - -" keep copy-on-select and other GUI options -set clipboard+=autoselect guioptions+=a - -" enter insert mode on left-click -nnoremap i -``` - -You'll then need to update `~/.vimrc` to source that plugin: - -```vim -" Mouse Support: reasonable defaults from webinstall.dev/vim-mouse -source ~/.vim/plugins/mouse.vim -``` diff --git a/vim-mouse/install.sh b/vim-mouse/install.sh deleted file mode 100644 index fd04407..0000000 --- a/vim-mouse/install.sh +++ /dev/null @@ -1,36 +0,0 @@ -#!/bin/bash - -function __init_vim_mouse() { - set -e - set -u - - mkdir -p "$HOME/.vim/plugins" - rm -rf "$HOME/.vim/plugins/mouse.vim" - - echo "" - - if [ ! -e "$HOME/.vimrc" ]; then - touch "$HOME/.vimrc" - fi - - if ! [ -f "$HOME/.vim/plugins/mouse.vim" ]; then - mkdir -p ~/.vim/plugins - WEBI_HOST=${WEBI_HOST:-"https://webinstall.dev"} - curl -fsS -o ~/.vim/plugins/mouse.vim "$WEBI_HOST/packages/vim-mouse/mouse.vim" - fi - - if ! grep 'source.*plugins.mouse.vim' -r ~/.vimrc > /dev/null 2> /dev/null; then - set +e - mkdir -p ~/.vim/plugins - printf '\n" Mouse Support: reasonable defaults from webinstall.dev/vim-mouse\n' >> ~/.vimrc - printf 'source ~/.vim/plugins/mouse.vim\n' >> ~/.vimrc - set -e - echo "added ~/.vim/plugins/mouse.vim" - echo "updated ~/.vimrc with 'source ~/.vim/plugins/mouse.vim'" - echo "" - fi - - echo "vim-mouse enabled with reasonable defaults" -} - -__init_vim_mouse diff --git a/vim-mouse/mouse.vim b/vim-mouse/mouse.vim deleted file mode 100644 index 761cf57..0000000 --- a/vim-mouse/mouse.vim +++ /dev/null @@ -1,8 +0,0 @@ -" turn on mouse support -set mouse=a - -" keep copy-on-select and other GUI options -set clipboard+=autoselect guioptions+=a - -" enter insert mode on left-click -nnoremap i diff --git a/vim-standard/README.md b/vim-standard/README.md deleted file mode 100644 index 84afe91..0000000 --- a/vim-standard/README.md +++ /dev/null @@ -1,26 +0,0 @@ ---- -title: vim-standard -homepage: https://webinstall.dev/vim-standard -tagline: | - meta package for our recommended vim plugins and settings ---- - -To update (replacing the current version) run `webi vim-standard`. - -## Cheat Sheet - -> A collection of extremely useful plugins and very simple one-line changes to -> vim's default settings. - -This meta package will install the full set of plugins and settings we -recommended. - -It includes many of the vim plugins available on webinstall.dev such as: - -- [vim-shell](/vim-shell) -- [vim-sensible](/vim-sensible) -- [vim-spell](/vim-spell) -- [vim-lastplace](/vim-lastplace) -- [vim-viminfo](/vim-viminfo) -- [vim-syntastic](/vim-syntastic) -- [vim-prettier](/vim-prettier) diff --git a/vim-standard/install.sh b/vim-standard/install.sh deleted file mode 100644 index 6e96ab0..0000000 --- a/vim-standard/install.sh +++ /dev/null @@ -1,8 +0,0 @@ -webi \ - vim-shell \ - vim-sensible \ - vim-spell \ - vim-viminfo \ - vim-lastplace \ - vim-syntastic \ - vim-prettier