dotfiles/modules/neovim/lua/packer/speed.lua

14 lines
207 B
Lua
Raw Normal View History

2022-07-09 21:27:04 +00:00
local M = {}
M.packer = function(use)
-- Startup speed hacks
use({
"lewis6991/impatient.nvim",
config = function()
require("impatient")
end,
})
end
return M