mirror of
https://github.com/webinstall/webi-installers.git
synced 2026-03-04 10:20:22 +00:00
23 lines
651 B
Bash
23 lines
651 B
Bash
#!/bin/bash
|
|
|
|
# title: vim-sensible
|
|
# homepage: https://github.com/tpope/vim-sensible
|
|
# tagline: |
|
|
# Vim Sensible: sensible defaults for vim
|
|
# description: |
|
|
# Think of sensible.vim as one step above 'nocompatible' mode: a universal set of defaults that (hopefully) everyone can agree on.
|
|
# examples: |
|
|
#
|
|
# Installs to `$HOME/.vim/pack/plugins/start`.
|
|
# It just works.
|
|
#
|
|
|
|
{
|
|
set -e
|
|
set -u
|
|
|
|
mkdir -p "$HOME/.vim/pack/plugins/start"
|
|
rm -rf "$HOME/.vim/pack/plugins/start/sensible" "$HOME/.vim/pack/plugins/start/vim-sensible"
|
|
git clone --depth=1 https://tpope.io/vim/sensible.git "$HOME/.vim/pack/plugins/start/vim-sensible"
|
|
}
|