diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2024-10-02 23:51:44 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2024-10-02 23:51:44 +0200 |
commit | b8ab4613bcd88f4110668e803d1e9fbb2fbf556b (patch) | |
tree | 40c204be2bf5a6e9918e76ec1bdf252c16b206ca /nvim | |
parent | 72a4ae656c5ef686ccadc6a8c328764344ab2262 (diff) | |
download | dotfiles-b8ab4613bcd88f4110668e803d1e9fbb2fbf556b.tar.gz |
vimwiki
Diffstat (limited to 'nvim')
-rw-r--r-- | nvim/lua/plugins/notes.lua | 13 |
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 + }, +} |