Replaced packer with lazyvim plugin manager

This commit is contained in:
2024-02-27 17:08:10 +01:00
parent 7c0dd99803
commit d548c4027e
23 changed files with 324 additions and 149 deletions

View File

@@ -0,0 +1,22 @@
return {
{ "vimwiki/vimwiki",
config = function()
-- Restrict vimwiki to only the path specified in the vimwiki_list global var
vim.g.vimwiki_global_ext = 0
-- Configure a list of vimwiki wiki, need a :PackerCompile to apply
vim.g.vimwiki_list = {
{
path = '~/Documents/cybersecurity/wiki/',
path_html = '~/Documents/cybersecurity/wiki/dist',
template_path = '~/.config/vimwiki/templates/cybersecurity/',
template_default = 'default',
template_ext = 'html',
css_name = 'css/styles.css',
syntax = 'markdown',
ext = '.md',
custom_wiki2html = '~/.config/vimwiki/parse_wiki.py',
},
}
end,
}
}