feat(nvim): enable vimwiki

This commit is contained in:
Michael Mandl 2024-07-27 22:22:59 +02:00 committed by Michael Mandl
parent 1e7b654477
commit 22a18418ac
Signed by: mandlm
GPG key ID: 088ED38F036C7AF2
6 changed files with 34 additions and 5 deletions

12
neovim/vimwiki.lua Normal file
View file

@ -0,0 +1,12 @@
vim.g.vimwiki_list = {
{
path = vimwiki_path,
syntax = "markdown",
ext = ".md",
path_html = "~/vimwiki_html",
custom_wiki2html = "vimwiki_markdown",
}
}
-- disable global markdown hijacking
vim.g.vimwiki_global_ext = 0