treewide: migrate to pluginRC for correct DAG order

The "new" DAG order is as follows:
- (luaConfigPre)
- globalsScript
- basic
- theme
- pluginConfigs
- extraPluginConfigs
- mappings
- (luaConfigPost)
This commit is contained in:
diniamo 2024-07-15 12:40:05 +02:00
commit a0197fe1bb
67 changed files with 101 additions and 87 deletions

View file

@ -25,7 +25,7 @@ in {
"<leader>o" = "+Notes";
};
luaConfigRC.mind-nvim = entryAnywhere ''
pluginRC.mind-nvim = entryAnywhere ''
require'mind'.setup()
'';
};

View file

@ -22,7 +22,7 @@ in {
"<leader>o" = "+Notes";
};
luaConfigRC.obsidian = entryAnywhere ''
pluginRC.obsidian = entryAnywhere ''
require("obsidian").setup(${toLuaObject cfg.setupOpts})
'';
};

View file

@ -21,7 +21,7 @@ in {
"<leader>o" = "+Notes";
};
luaConfigRC.orgmode = entryAnywhere ''
pluginRC.orgmode = entryAnywhere ''
-- Treesitter configuration
require('nvim-treesitter.configs').setup {

View file

@ -24,7 +24,7 @@ in {
(mkIf config.vim.lsp.trouble.enable (mkBinding cfg.mappings.trouble ":TodoTrouble<CR>" mappings.trouble.description))
];
luaConfigRC.todo-comments = ''
pluginRC.todo-comments = ''
require('todo-comments').setup(${toLuaObject cfg.setupOpts})
'';
};