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