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

changeset 1022
d509e282ae10
child 1064
fcfa295076a8
equal deleted inserted replaced
1021:f0756bba5d2f 1022:d509e282ae10
1 local g = vim.g
2
3 g.vimwiki_auto_chdir = 1
4 g.vimwiki_auto_header = 1
5 g.vimwiki_ext2syntax = {[vim.type_idx]=vim.types.dictionary}
6
7 g.vimwiki_list = {
8 {
9 path = '~/vimwiki/',
10 auto_tags = 1, auto_toc = 1, automatic_nested_syntaxes = 1
11 },
12 {
13 path = '~/Documents/SpiderOak Hive/vimwiki',
14 auto_tags = 1, auto_toc = 1, automatic_nested_syntaxes = 1
15 }
16 }
17
18 return {
19 'vimwiki/vimwiki',
20 }

mercurial