mirror of
https://github.com/NotAShelf/nvf.git
synced 2024-11-02 11:31:15 +00:00
21 lines
392 B
Nix
21 lines
392 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: let
|
|
inherit (lib.modules) mkIf;
|
|
inherit (lib.nvim.dag) entryAnywhere;
|
|
inherit (lib.nvim.lua) toLuaObject;
|
|
|
|
cfg = config.vim.ui.smartcolumn;
|
|
in {
|
|
config = mkIf cfg.enable {
|
|
vim = {
|
|
startPlugins = ["smartcolumn"];
|
|
|
|
vim.luaConfigRC.smartcolumn = entryAnywhere ''
|
|
require("smartcolumn").setup(${toLuaObject cfg.setupOpts})
|
|
'';
|
|
};
|
|
}
|