about summary refs log tree commit diff stats
path: root/home-manager/soispha/config/neovim/nixvim/plugins/lf-nvim/default.nix
blob: a42c6f33cd5590507ba81f27777ea48f9b4772fb (plain) (blame)
1
2
3
4
5
6
7
8
{lib, ...}: {
  programs.nixvim = {
    # TODO package lf-nvim though a module
    extraConfigLuaPost = ''
      ${lib.strings.fileContents ./lua/lf-nvim.lua}
    '';
  };
}