2023-04-05 13:58:56 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
2023-11-07 00:50:27 +00:00
|
|
|
}: let
|
2024-03-16 13:25:30 +00: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 12:01:46 +00:00
|
|
|
|
2023-04-05 13:58:56 +00:00
|
|
|
cfg = config.vim.ui.smartcolumn;
|
|
|
|
in {
|
|
|
|
config = mkIf cfg.enable {
|
2024-03-16 13:25:30 +00:00
|
|
|
vim = {
|
|
|
|
startPlugins = ["smartcolumn"];
|
2023-04-05 13:58:56 +00:00
|
|
|
|
2024-03-15 12:01:46 +00:00
|
|
|
vim.luaConfigRC.smartcolumn = entryAnywhere ''
|
2024-03-10 21:00:14 +00:00
|
|
|
require("smartcolumn").setup(${toLuaObject cfg.setupOpts})
|
2024-03-15 12:01:46 +00:00
|
|
|
'';
|
2023-04-05 13:58:56 +00:00
|
|
|
};
|
|
|
|
}
|