blob: 04566564967f2356908cd4208cd032560311ccc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
post_install() {
echo ':: This plugin must be activated through your init file.'
echo ':: You can activate it with either of the following:'
echo ''
echo "init.vim: lua 'require('gitsigns').setup()"
echo "init.lua: require('gitsigns').setup()"
}
post_remove() {
echo ':: Remember to remove your setup from your init scripts.'
}
|