mirror of
https://github.com/m1ngsama/chopsticks.git
synced 2025-12-24 10:51:22 +00:00
13 lines
241 B
Lua
13 lines
241 B
Lua
-- if Neovim 0.9+, use vim.loade speedup module loading
|
|
if vim.loader then
|
|
vim.loader.enable()
|
|
end
|
|
|
|
-- all use dump print
|
|
_G.dd = function(...)
|
|
require("util.debug").dump(...)
|
|
end
|
|
vim.print = _G.dd
|
|
|
|
-- use plugin
|
|
require("config.lazy")
|