mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 08:53:31 +02:00
update
This commit is contained in:
parent
8d4d67f3d2
commit
e5686e4858
1 changed files with 3 additions and 17 deletions
|
@ -11,11 +11,9 @@ return {
|
||||||
-- color scheme
|
-- color scheme
|
||||||
{
|
{
|
||||||
"folke/tokyonight.nvim",
|
"folke/tokyonight.nvim",
|
||||||
lazy = true,
|
|
||||||
-- opts = { style = "moon" },
|
|
||||||
-- commit = "66bfc2e8f754869c7b651f3f47a2ee56ae557764",
|
-- commit = "66bfc2e8f754869c7b651f3f47a2ee56ae557764",
|
||||||
--lazy = false, -- make sure we load this during startup if it is your main colorscheme
|
lazy = true, -- make sure we load this during startup if it is your main colorscheme
|
||||||
--priority = 1000, -- make sure to load this before all the other start plugins
|
-- priority = 1000, -- make sure to load this before all the other start plugins
|
||||||
config = function()
|
config = function()
|
||||||
local is_transparant = false
|
local is_transparant = false
|
||||||
if is_transparant then
|
if is_transparant then
|
||||||
|
@ -156,7 +154,7 @@ return {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"hrsh7th/cmp-cmdline",
|
"hrsh7th/cmp-cmdline",
|
||||||
config = function()
|
init = function()
|
||||||
require("user.cmdline")
|
require("user.cmdline")
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
@ -416,18 +414,6 @@ return {
|
||||||
{
|
{
|
||||||
"stevearc/dressing.nvim",
|
"stevearc/dressing.nvim",
|
||||||
event = "BufWinEnter",
|
event = "BufWinEnter",
|
||||||
init = function()
|
|
||||||
---@diagnostic disable-next-line: duplicate-set-field
|
|
||||||
vim.ui.select = function(...)
|
|
||||||
require("lazy").load({ plugins = { "dressing.nvim" } })
|
|
||||||
return vim.ui.select(...)
|
|
||||||
end
|
|
||||||
---@diagnostic disable-next-line: duplicate-set-field
|
|
||||||
vim.ui.input = function(...)
|
|
||||||
require("lazy").load({ plugins = { "dressing.nvim" } })
|
|
||||||
return vim.ui.input(...)
|
|
||||||
end
|
|
||||||
end,
|
|
||||||
config = function()
|
config = function()
|
||||||
require("user.dressing")
|
require("user.dressing")
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue