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

14 lines
291 B
Nix
Raw Normal View History

{ lib, ... }:
{
flake.modules.nixvim.custom =
{ pkgs, ... }:
{
extraFiles."after/ftplugin/asciidoc.lua".text = ''
2025-09-06 22:16:40 +01:00
vim.opt_local.linebreak = true
vim.opt_local.makeprg = "${lib.getExe pkgs.asciidoctor} %"
vim.opt_local.spell = true
'';
};
}