From 59fb1e0e6361a5f843ac0d02e49d7daab59b6987 Mon Sep 17 00:00:00 2001 From: Soispha Date: Fri, 25 Aug 2023 23:05:46 +0200 Subject: Feat(hm/conf/neovim/plugins/telescope/extensions/bibtex): Init --- .../nixvim/plugins/telescope/extensions/bibtex/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/bibtex/default.nix (limited to 'home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions') diff --git a/home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/bibtex/default.nix b/home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/bibtex/default.nix new file mode 100644 index 00000000..12c9736c --- /dev/null +++ b/home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/bibtex/default.nix @@ -0,0 +1,13 @@ +{pkgs, ...}: { + # WARNING: This is only activated in tex files via the ftplugin. + programs.nixvim = { + extraPlugins = [ + pkgs.vimExtraPlugins.telescope-bibtex-nvim + ]; + maps.normal = { + "ib" = { + desc = "[i]nsert a [b]atex citation"; + }; + }; + }; +} -- cgit 1.4.1