Updates neovim config

This commit is contained in:
Dennis Schoepf 2025-04-02 19:47:39 +02:00
parent ac3dbbf3ad
commit b31e1146c7
6 changed files with 48 additions and 26 deletions

View file

@ -0,0 +1,10 @@
return {
"vimwiki/vimwiki",
init = function()
vim.g.vimwiki_list = { { path = "~/notes", syntax = "markdown", ext = "md" } }
vim.g.vimwiki_map_prefix = "<Leader>o"
end,
keys = {
{ "<leader>d", "<cmd>90vsplit | VimwikiMakeDiaryNote<cr>", desc = "Open today's diary in split", mode = "n" },
},
}