about summary refs log tree commit diff stats
path: root/hm/soispha/conf/nvim/files/default.nix
blob: c44f45b09d5ba385a3f1cab2714c0ee53b1b2b17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  lib,
  pkgs,
  ...
}: {
  programs.nixvim = {
    extraPlugins = [
      pkgs.vimExtraPlugins.gruvbox
    ];
    extraFiles = {
      "ftplugin/tex.lua" = ''
        ${lib.strings.fileContents ./ftplugin/tex.lua}
      '';
    };
  };
}