nix-community.nixvim/tests/modules/files.nix

16 lines
277 B
Nix

{
after = {
files."after/ftplugin/python.lua" = {
localOpts.conceallevel = 1;
keymaps = [
{
mode = "n";
key = "<C-g>";
action = ":!python script.py<CR>";
options.silent = true;
}
];
};
};
}