mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-24 17:58:46 +02:00
update config
This commit is contained in:
parent
97de102c92
commit
d7876dd21b
5 changed files with 26 additions and 25 deletions
|
@ -83,7 +83,7 @@ return {
|
|||
documentation = cmp.config.window.bordered(),
|
||||
},
|
||||
experimental = {
|
||||
ghost_text = false,
|
||||
ghost_text = true,
|
||||
native_menu = false,
|
||||
},
|
||||
}
|
||||
|
|
|
@ -30,20 +30,20 @@ return {
|
|||
-- },
|
||||
|
||||
-- for auto complate commond mode
|
||||
-- {
|
||||
-- "gelguy/wilder.nvim",
|
||||
-- event = "BufWinEnter",
|
||||
-- config = function()
|
||||
-- local wilder = require("wilder")
|
||||
-- wilder.setup({ modes = { ":", "/", "?" } })
|
||||
-- wilder.set_option(
|
||||
-- "renderer",
|
||||
-- wilder.popupmenu_renderer({
|
||||
-- highlighter = wilder.basic_highlighter(),
|
||||
-- left = { " ", wilder.popupmenu_devicons() },
|
||||
-- right = { " ", wilder.popupmenu_scrollbar() },
|
||||
-- })
|
||||
-- )
|
||||
-- end,
|
||||
-- },
|
||||
{
|
||||
"gelguy/wilder.nvim",
|
||||
event = "BufWinEnter",
|
||||
config = function()
|
||||
local wilder = require("wilder")
|
||||
wilder.setup({ modes = { ":", "/", "?" } })
|
||||
wilder.set_option(
|
||||
"renderer",
|
||||
wilder.popupmenu_renderer({
|
||||
highlighter = wilder.basic_highlighter(),
|
||||
left = { " ", wilder.popupmenu_devicons() },
|
||||
right = { " ", wilder.popupmenu_scrollbar() },
|
||||
})
|
||||
)
|
||||
end,
|
||||
},
|
||||
}
|
||||
|
|
|
@ -307,7 +307,7 @@ return {
|
|||
"lewis6991/gitsigns.nvim",
|
||||
enabled = vim.fn.executable("git") == 1,
|
||||
ft = "gitcommit",
|
||||
event = "VeryLazy",
|
||||
event = "BufRead",
|
||||
config = function()
|
||||
require("user.gitsigns")
|
||||
end,
|
||||
|
|
|
@ -93,8 +93,8 @@ return {
|
|||
{
|
||||
"nvim-lualine/lualine.nvim",
|
||||
-- dependencies = { "kyazdani42/nvim-web-devicons", opt = true },
|
||||
event = "VeryLazy",
|
||||
init = function()
|
||||
event = "BufWinEnter",
|
||||
config = function()
|
||||
local model = 0
|
||||
if model == 1 then
|
||||
require("user.lualine1")
|
||||
|
@ -116,9 +116,9 @@ return {
|
|||
-- for tree exploler
|
||||
{
|
||||
"kyazdani42/nvim-tree.lua",
|
||||
event = "BufWinEnter",
|
||||
-- event = "BufRead",
|
||||
cmd = "NvimTreeToggle",
|
||||
dependencies = "kyazdani42/nvim-web-devicons",
|
||||
-- dependencies = "kyazdani42/nvim-web-devicons",
|
||||
config = function()
|
||||
require("user.nvim-tree")
|
||||
end,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue