about summary refs log tree commit diff stats
path: root/modules/home.legacy/conf/nvim/files/ftplugin/tex.lua
diff options
context:
space:
mode:
Diffstat (limited to 'modules/home.legacy/conf/nvim/files/ftplugin/tex.lua')
-rw-r--r--modules/home.legacy/conf/nvim/files/ftplugin/tex.lua9
1 files changed, 6 insertions, 3 deletions
diff --git a/modules/home.legacy/conf/nvim/files/ftplugin/tex.lua b/modules/home.legacy/conf/nvim/files/ftplugin/tex.lua
index f3fffa86..4107a7c5 100644
--- a/modules/home.legacy/conf/nvim/files/ftplugin/tex.lua
+++ b/modules/home.legacy/conf/nvim/files/ftplugin/tex.lua
@@ -52,6 +52,9 @@ require("telescope").setup({
   },
 })
 require("telescope").load_extension("bibtex")
-vim.keymap.set("n", "<leader>ib", function()
-  require("telescope").extensions.bibtex.bibtex()
-end, { noremap = true, silent = true, desc = "list bibtex entries in telescope" })
+vim.keymap.set(
+  "n",
+  "<leader>ib",
+  function() require("telescope").extensions.bibtex.bibtex() end,
+  { noremap = true, silent = true, desc = "list bibtex entries in telescope" }
+)