mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-13 02:02:56 +00:00
14 lines
207 B
Lua
14 lines
207 B
Lua
local M = {}
|
|
|
|
M.packer = function(use)
|
|
-- Startup speed hacks
|
|
use({
|
|
"lewis6991/impatient.nvim",
|
|
config = function()
|
|
require("impatient")
|
|
end,
|
|
})
|
|
end
|
|
|
|
return M
|