summarylogtreecommitdiffstats
path: root/mason.nvim.install
blob: 80e329197c0423fba9bb3515e8288113943a23ec (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
_post_install_string="
	This plugin requires manual setup. Add the following to your init.lua or equivalent.

		require(\"mason\").setup()

	Further setup instructions found at: https://github.com/williamboman/mason.nvim
		
"
_post_remove_string="
	Remember to remove all references to this plugin from your init scripts.
"
_documentation_reminder="
	Make sure to also update the help tags to reflect changes in documentation:

		sudo nvim -u NONE --headless -c 'helptags ALL' -c 'q'
"
post_install() {
	echo  "$_post_install_string"
	echo  "$_documentation_reminder"
}

post_remove() {
	echo  "$_post_remove_string"
	echo  "$_documentation_reminder"
}