2023-04-05 16:58:56 +03:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
2023-11-06 17:50:27 -07:00
|
|
|
}: let
|
2024-03-16 16:25:30 +03:00
|
|
|
inherit (lib.modules) mkIf;
|
|
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
2024-03-10 21:00:14 +00:00
|
|
|
inherit (lib.nvim.lua) toLuaObject;
|
2024-03-15 15:01:46 +03:00
|
|
|
|
2023-04-05 16:58:56 +03:00
|
|
|
cfg = config.vim.ui.smartcolumn;
|
|
|
|
in {
|
|
|
|
config = mkIf cfg.enable {
|
2024-03-16 16:25:30 +03:00
|
|
|
vim = {
|
|
|
|
startPlugins = ["smartcolumn"];
|
2023-04-05 16:58:56 +03:00
|
|
|
|
2024-07-20 10:30:48 +02:00
|
|
|
pluginRC.smartcolumn = entryAnywhere ''
|
2024-03-16 09:29:32 +00:00
|
|
|
require("smartcolumn").setup(${toLuaObject cfg.setupOpts})
|
|
|
|
'';
|
|
|
|
};
|
2023-04-05 16:58:56 +03:00
|
|
|
};
|
|
|
|
}
|