.config/nvim/lua/plugins/etc.lua

Sun, 05 Mar 2023 15:14:39 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 05 Mar 2023 15:14:39 -0500
changeset 1060
c20cb89a2ee9
parent 1022
d509e282ae10
child 1064
fcfa295076a8
permissions
-rw-r--r--

Add "comment" parser

local g = vim.g

g.vimwiki_auto_chdir  = 1
g.vimwiki_auto_header = 1
g.vimwiki_ext2syntax = {[vim.type_idx]=vim.types.dictionary}

g.vimwiki_list = {
  {
    path = '~/vimwiki/',
    auto_tags = 1, auto_toc = 1, automatic_nested_syntaxes = 1
  },
  {
    path = '~/Documents/SpiderOak Hive/vimwiki',
    auto_tags = 1, auto_toc = 1, automatic_nested_syntaxes = 1
  }
}

return {
  'vimwiki/vimwiki', 
}

mercurial