mirror of
https://github.com/NotAShelf/nvf.git
synced 2026-04-05 18:40:53 +00:00
notes/obsidian: lazy load by default
This commit is contained in:
parent
14c5b99543
commit
a54e6086e5
1 changed files with 16 additions and 6 deletions
|
|
@ -5,22 +5,32 @@
|
|||
}: let
|
||||
inherit (lib.modules) mkIf mkMerge;
|
||||
inherit (lib.generators) mkLuaInline;
|
||||
inherit (lib.nvim.dag) entryAnywhere;
|
||||
inherit (lib.nvim.lua) toLuaObject;
|
||||
|
||||
cfg = config.vim.notes.obsidian;
|
||||
in {
|
||||
config = mkIf cfg.enable {
|
||||
vim = {
|
||||
startPlugins = [
|
||||
"obsidian-nvim"
|
||||
"vim-markdown"
|
||||
"tabular"
|
||||
"plenary-nvim"
|
||||
];
|
||||
|
||||
pluginRC.obsidian = entryAnywhere ''
|
||||
require("obsidian").setup(${toLuaObject cfg.setupOpts})
|
||||
lazy.plugins.obsidian-nvim = {
|
||||
package = "obsidian-nvim";
|
||||
# NOTE: packaged plugin directory is `obsidian.nvim`; loading by the
|
||||
# spec key (`obsidian-nvim`) misses and makes `require("obsidian")`
|
||||
# resolve to a loader function via lzn-auto-require.
|
||||
# I don't love this, but I can't think of anything better
|
||||
load = ''
|
||||
vim.cmd.packadd("obsidian.nvim")
|
||||
'';
|
||||
setupModule = "obsidian";
|
||||
inherit (cfg) setupOpts;
|
||||
|
||||
ft = ["markdown"];
|
||||
cmd = ["Obsidian"];
|
||||
};
|
||||
|
||||
notes.obsidian.setupOpts = let
|
||||
# may not be defined
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue