blob: 9b983928e0a749a5de5cef05e7499b52dc224db1 (
plain) (
blame)
1
2
3
4
5
6
|
-- TODO: no idea if this is the best way to do this
-- the part that makes this work lives in ../../../after/ftplugin/markdown.lua
require('null-ls').disable('vale')
vim.keymap.set('n', '<leader>v', function()
require('null-ls').toggle('vale')
end)
|