summaryrefslogtreecommitdiffstatshomepage
path: root/nvim/.config/nvim/lua/tobyvin/plugins/spellsitter.lua
blob: 5568b6f0f7c8c23f7cacd7a9749750ce822137ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
local M = {}

M.setup = function()
	local status_ok, spellsitter = pcall(require, "spellsitter")
	if not status_ok then
		vim.notify("Failed to load module 'spellsitter'", vim.log.levels.ERROR)
		return
	end

	spellsitter.setup()
end

return M