mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-24 09:48:51 +02:00
add: update config
This commit is contained in:
parent
99e49e4087
commit
83ef9398c8
5 changed files with 298 additions and 9 deletions
|
@ -102,8 +102,16 @@ return {
|
|||
},
|
||||
{
|
||||
"hrsh7th/cmp-cmdline",
|
||||
event = "VeryLazy",
|
||||
-- event = "VeryLazy",
|
||||
enabled = use_noice,
|
||||
init = function()
|
||||
-- load if mode command mode
|
||||
vim.api.nvim_create_autocmd("CmdlineEnter", {
|
||||
callback = function()
|
||||
require("lazy").load({ plugins = { "cmp-cmdline" } })
|
||||
end,
|
||||
})
|
||||
end,
|
||||
config = function()
|
||||
local cmp = require("cmp")
|
||||
local mapping = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue