about summary refs log tree commit diff stats
path: root/hm/soispha/conf/nvim/plgs/telescope/extensions/bibtex/default.nix
blob: 12c9736c1641284bca85ec5e70682dc523f2f84d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{pkgs, ...}: {
  # WARNING: This is only activated in tex files via the ftplugin.
  programs.nixvim = {
    extraPlugins = [
      pkgs.vimExtraPlugins.telescope-bibtex-nvim
    ];
    maps.normal = {
      "<space>ib" = {
        desc = "[i]nsert a [b]atex citation";
      };
    };
  };
}