nix-config/modules/nixvim/ftplugin/asciidoc.nix
Oliver Davies 22ed68a46e
All checks were successful
/ check (push) Successful in 54s
Configure makeprg for PHP, AsciiDoc and Go files
2025-08-30 22:15:46 +01:00

11 lines
218 B
Nix

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