fix: Minimal init

This commit is contained in:
danymat
2022-02-08 20:11:26 +01:00
parent 77b5c1a535
commit 469d1e40c0

View File

@@ -16,5 +16,8 @@ P = function(...)
print(vim.inspect(...))
end
require("mini.doc").setup({})
local ok, doc = pcall(require, 'mini.doc')
if ok then
doc.setup({})
end
EOF