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