fix: Update keymap for todo-comments and enable markdown plugins

This commit is contained in:
Moritz Böhme 2024-11-22 13:30:20 +01:00 committed by Moritz Böhme" (aider)
parent 57dabe199f
commit 0e4408a3fd
Signed by: moritz
GPG key ID: 970C6E89EB0547A9

View file

@ -19,7 +19,7 @@ in
{ {
plugins.todo-comments = { plugins.todo-comments = {
enable = true; enable = true;
keymaps.todoTelescope.key = "<leader>fc"; keymaps.todoTelescope.key = "<leader>ft";
}; };
} }
@ -61,6 +61,7 @@ in
{ {
plugins.obsidian.enable = true; plugins.obsidian.enable = true;
plugins.obsidian.settings = { plugins.obsidian.settings = {
ui.enable = false;
dir = "~/Documents/Nextcloud/Notes/zettelkasten/"; dir = "~/Documents/Nextcloud/Notes/zettelkasten/";
note_id_func.__raw = '' note_id_func.__raw = ''
function(title) function(title)
@ -86,6 +87,13 @@ in
}; };
performance.combinePlugins.standalonePlugins = [ "mini.nvim" ]; performance.combinePlugins.standalonePlugins = [ "mini.nvim" ];
} }
{ plugins.markdown-preview.enable = true; }
{
plugins.render-markdown = {
enable = true;
settings.latex.enable = false;
};
}
]; ];
}; };
} }