mirror of
https://github.com/NotAShelf/neovim-flake.git
synced 2024-11-08 08:05:58 +01:00
20 lines
392 B
Nix
20 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})
|
|
'';
|
|
};
|
|
}
|