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

17 lines
280 B
Nix
Raw Normal View History

2024-02-09 21:14:28 +01:00
{
after = {
files."after/ftplugin/python.lua" = {
localOptions.conceallevel = 1;
keymaps = [
{
mode = "n";
key = "<C-g>";
action = ":!python script.py<CR>";
options.silent = true;
}
];
};
};
}