about summary refs log tree commit diff stats
path: root/modules/home.legacy/conf/nvim/files/default.nix
blob: f935ac7b632feaf8ccdbaeaac2dedf65823d9f2b (plain) (blame)
1
2
3
4
5
6
7
8
9
{lib, ...}: {
  programs.nixvim = {
    extraFiles = {
      "ftplugin/tex.lua".text = ''
        ${lib.strings.fileContents ./ftplugin/tex.lua}
      '';
    };
  };
}