Sun, 19 Feb 2023 13:03:57 -0600
Copy other ft and plugin settings
1022 | 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 | } |