nix-config/modules/nixvim/ftplugin/asciidoc.nix

13 lines
291 B
Nix

{ lib, ... }:
{
flake.modules.nixvim.custom =
{ pkgs, ... }:
{
extraFiles."after/ftplugin/asciidoc.lua".text = ''
vim.opt_local.linebreak = true
vim.opt_local.makeprg = "${lib.getExe pkgs.asciidoctor} %"
vim.opt_local.spell = true
'';
};
}