diff options
author | Soispha <soispha@vhack.eu> | 2023-08-25 23:05:46 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-08-25 23:09:48 +0200 |
commit | 59fb1e0e6361a5f843ac0d02e49d7daab59b6987 (patch) | |
tree | 2b0cd80e0e72e8b37892ce0a22a521af44cddb39 /home-manager/soispha/config/neovim/nixvim/plugins/telescope | |
parent | Feat(hm/conf/neovim/plugins/femaco): Init (diff) | |
download | nixos-config-59fb1e0e6361a5f843ac0d02e49d7daab59b6987.zip |
Feat(hm/conf/neovim/plugins/telescope/extensions/bibtex): Init
Diffstat (limited to 'home-manager/soispha/config/neovim/nixvim/plugins/telescope')
-rw-r--r-- | home-manager/soispha/config/neovim/nixvim/plugins/telescope/extensions/bibtex/default.nix | 13 |
1 files changed, 13 insertions, 0 deletions
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 = { + "<space>ib" = { + desc = "[i]nsert a [b]atex citation"; + }; + }; + }; +} |