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
|
@ -7,3 +7,7 @@
|
|||
-- require("user.snip")
|
||||
-- require("user.bufferline")
|
||||
-- require("user.chat_gpt")
|
||||
require("user.options")
|
||||
require("user.keymaps")
|
||||
require("user.autocommands")
|
||||
require("user.format_onsave")
|
||||
|
|
|
@ -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 {}
|
||||
|
||||
|
|
|
@ -1,4 +1,8 @@
|
|||
require("nvim-treesitter.configs").setup({
|
||||
local status_ok, configs = pcall(require, "nvim-treesitter.configs")
|
||||
if not status_ok then
|
||||
return
|
||||
end
|
||||
configs.setup({
|
||||
ignore_install = { "phpdoc" }, -- List of parsers to ignore installing
|
||||
highlight = {
|
||||
enable = true,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue