mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-21 16:39:04 +02:00
update
This commit is contained in:
parent
a476e51b92
commit
f9c476b034
3 changed files with 26 additions and 2 deletions
|
@ -1,6 +1,22 @@
|
|||
local options_ok, _ = pcall(require, "user.options")
|
||||
if not options_ok then
|
||||
return
|
||||
end
|
||||
local key_ok, _ = pcall(require, "user.keymaps")
|
||||
if not key_ok then
|
||||
return
|
||||
end
|
||||
local cmd_ok, _ = pcall(require, "user.autocommands")
|
||||
if not cmd_ok then
|
||||
return
|
||||
end
|
||||
local fmt_ok, _ = pcall(require, "user.format_onsave")
|
||||
if not fmt_ok then
|
||||
return
|
||||
end
|
||||
|
||||
require("user.options")
|
||||
require("user.keymaps")
|
||||
require("user.autocommands")
|
||||
require("user.format_onsave")
|
||||
return {}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue