aboutsummaryrefslogtreecommitdiff
path: root/nvim/lua/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/plugins')
-rw-r--r--nvim/lua/plugins/notes.lua13
1 files changed, 13 insertions, 0 deletions
diff --git a/nvim/lua/plugins/notes.lua b/nvim/lua/plugins/notes.lua
new file mode 100644
index 0000000..8b44494
--- /dev/null
+++ b/nvim/lua/plugins/notes.lua
@@ -0,0 +1,13 @@
+return {
+ {
+ "vimwiki/vimwiki",
+ init = function()
+ vim.g.vimwiki_list = {{
+ syntax="markdown",
+ ext=".md",
+ path="~/notes/",
+ auto_toc=1,
+ }}
+ end
+ },
+}