Configure asciidoc files

This commit is contained in:
Oliver Davies 2025-09-06 22:16:40 +01:00
parent 017669069e
commit f28d640795

View file

@ -5,7 +5,9 @@
{ pkgs, ... }:
{
extraFiles."after/ftplugin/asciidoc.lua".text = ''
vim.opt_local.makeprg = "${lib.getExe pkgs.asciidoctor} %";
vim.opt_local.linebreak = true
vim.opt_local.makeprg = "${lib.getExe pkgs.asciidoctor} %"
vim.opt_local.spell = true
'';
};
}