update deps
This commit is contained in:
parent
9ddc54e493
commit
dfff755b58
5 changed files with 194 additions and 56 deletions
|
@ -1,17 +1,21 @@
|
|||
return {
|
||||
"uga-rosa/ccc.nvim",
|
||||
event = "BufEnter",
|
||||
opts = { auto_enable = true, lsp = true, point_char = "" },
|
||||
config = function(_, opts)
|
||||
require("ccc").setup(opts)
|
||||
vim.api.nvim_create_autocmd("BufRead", {
|
||||
group = vim.api.nvim_create_augroup("myconfig-color-picker-group", { clear = true }),
|
||||
callback = function()
|
||||
vim.cmd.CccHighlighterEnable()
|
||||
end,
|
||||
})
|
||||
end,
|
||||
keys = {
|
||||
{ "<leader>,p", "<cmd>CccPick<cr>", desc = "Color Picker", mode = { "n", "v", "x" } },
|
||||
},
|
||||
"uga-rosa/ccc.nvim",
|
||||
event = "BufEnter",
|
||||
opts = {
|
||||
auto_enable = true,
|
||||
lsp = true,
|
||||
point_char = "",
|
||||
},
|
||||
config = function(_, opts)
|
||||
require("ccc").setup(opts)
|
||||
vim.api.nvim_create_autocmd("BufRead", {
|
||||
group = vim.api.nvim_create_augroup("myconfig-color-picker-group", { clear = true }),
|
||||
callback = function()
|
||||
vim.cmd.CccHighlighterEnable()
|
||||
end,
|
||||
})
|
||||
end,
|
||||
keys = {
|
||||
{ "<leader>,p", "<cmd>CccPick<cr>", desc = "Color Picker", mode = { "n", "v", "x" } },
|
||||
},
|
||||
}
|
||||
|
|
|
@ -8,7 +8,7 @@ return {
|
|||
},
|
||||
config = function(_, opts)
|
||||
require("notify").setup(opts)
|
||||
vim.notify = require("notify")
|
||||
vim.notify = require("notify")
|
||||
|
||||
U.safeRequire("telescope", function(t)
|
||||
t.load_extension("notify")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue