mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-07-10 01:14:30 +02:00
update
This commit is contained in:
parent
869d48754d
commit
607827147d
5 changed files with 8 additions and 8 deletions
|
@ -203,7 +203,7 @@ return {
|
|||
-- for Speed up loading Lua modules in Neovim to improve startup time.
|
||||
{
|
||||
"lewis6991/impatient.nvim",
|
||||
event = "BufRead",
|
||||
event = "BufWinEnter",
|
||||
config = function()
|
||||
require("user.impatient")
|
||||
end,
|
||||
|
|
|
@ -48,7 +48,7 @@ return {
|
|||
},
|
||||
{
|
||||
"akinsho/bufferline.nvim",
|
||||
event = "BufRead",
|
||||
event = "BufWinEnter",
|
||||
config = function()
|
||||
require("user.bufferline")
|
||||
end,
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
local status_ok, indent_blankline = pcall(require, "indent_blankline")
|
||||
local status_ok, indent_blankline = pcall(require, "ibl")
|
||||
if not status_ok then
|
||||
return
|
||||
end
|
||||
|
|
|
@ -160,7 +160,7 @@ nvim_tree.setup({
|
|||
},
|
||||
view = {
|
||||
width = 30,
|
||||
hide_root_folder = false,
|
||||
-- hide_root_folder = false,
|
||||
side = "left",
|
||||
},
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue