Skip to content

Commit

Permalink
feat(plugins): make printer.nvim load lazily
Browse files Browse the repository at this point in the history
  • Loading branch information
ecosse3 committed Mar 13, 2023
1 parent 7a7168b commit 6e38313
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion lua/config/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,14 @@ return {
},
{
"rareitems/printer.nvim",
lazy = false,
event = "BufEnter",
ft = {
"lua",
"javascript",
"typescript",
"javascriptreact",
"typescriptreact",
},
config = function()
require("plugins.printer")
end,
Expand Down

0 comments on commit 6e38313

Please sign in to comment.