about summary refs log tree commit diff stats
path: root/home-manager/soispha/config/neovim/nixvim/files/default.nix
blob: f84455636bc2c779eed4ad3a613b3ed0d9edbb7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{lib, ...}: {
  programs.nixvim = {
    extraFiles = {
      path = "ftplugin/tex.lua";
      content = ''
        ${lib.strings.fileContents ./ftplugin/tex.lua}
      '';
    };
  };
}