AutoYADM commit: 2024-12-23 02:45:01
This commit is contained in:
parent
65dbc7fa28
commit
bb80f8a289
3 changed files with 18 additions and 2 deletions
|
@ -4,6 +4,7 @@
|
||||||
"LuaSnip": { "branch": "master", "commit": "33b06d72d220aa56a7ce80a0dd6f06c70cd82b9d" },
|
"LuaSnip": { "branch": "master", "commit": "33b06d72d220aa56a7ce80a0dd6f06c70cd82b9d" },
|
||||||
"SchemaStore.nvim": { "branch": "main", "commit": "af3f82cd4972520e6ac04c48ed3eed473660efca" },
|
"SchemaStore.nvim": { "branch": "main", "commit": "af3f82cd4972520e6ac04c48ed3eed473660efca" },
|
||||||
"blink-cmp-copilot": { "branch": "main", "commit": "e3eedf36ceda1932e296ec894de4ceea8ddeacb6" },
|
"blink-cmp-copilot": { "branch": "main", "commit": "e3eedf36ceda1932e296ec894de4ceea8ddeacb6" },
|
||||||
|
"blink-ripgrep.nvim": { "branch": "main", "commit": "8a47d404a359c70c796cb0979ddde4c788fd44e5" },
|
||||||
"blink.cmp": { "branch": "main", "commit": "a9a0f96c6a1029884e37dfd74a88a075b40366dd" },
|
"blink.cmp": { "branch": "main", "commit": "a9a0f96c6a1029884e37dfd74a88a075b40366dd" },
|
||||||
"bufferline.nvim": { "branch": "main", "commit": "261a72b90d6db4ed8014f7bda976bcdc9dd7ce76" },
|
"bufferline.nvim": { "branch": "main", "commit": "261a72b90d6db4ed8014f7bda976bcdc9dd7ce76" },
|
||||||
"catppuccin": { "branch": "main", "commit": "faf15ab0201b564b6368ffa47b56feefc92ce3f4" },
|
"catppuccin": { "branch": "main", "commit": "faf15ab0201b564b6368ffa47b56feefc92ce3f4" },
|
||||||
|
|
|
@ -34,7 +34,9 @@ require("lazy").setup({
|
||||||
version = false, -- always use the latest git commit
|
version = false, -- always use the latest git commit
|
||||||
-- version = "*", -- try installing the latest stable version for plugins that support semver
|
-- version = "*", -- try installing the latest stable version for plugins that support semver
|
||||||
},
|
},
|
||||||
install = {},
|
install = {
|
||||||
|
-- colo
|
||||||
|
},
|
||||||
checker = {
|
checker = {
|
||||||
enabled = true, -- check for plugin updates periodically
|
enabled = true, -- check for plugin updates periodically
|
||||||
notify = false, -- notify on update
|
notify = false, -- notify on update
|
||||||
|
@ -46,7 +48,7 @@ require("lazy").setup({
|
||||||
"gzip",
|
"gzip",
|
||||||
-- "matchit",
|
-- "matchit",
|
||||||
-- "matchparen",
|
-- "matchparen",
|
||||||
-- "netrwPlugin",
|
"netrwPlugin",
|
||||||
"tarPlugin",
|
"tarPlugin",
|
||||||
"tohtml",
|
"tohtml",
|
||||||
"tutor",
|
"tutor",
|
||||||
|
|
|
@ -7,12 +7,19 @@ return {
|
||||||
{ "giuxtaposition/blink-cmp-copilot", enabled = false },
|
{ "giuxtaposition/blink-cmp-copilot", enabled = false },
|
||||||
{
|
{
|
||||||
"saghen/blink.cmp",
|
"saghen/blink.cmp",
|
||||||
|
dependencies = {
|
||||||
|
"mikavilpas/blink-ripgrep.nvim",
|
||||||
|
},
|
||||||
-- opts_extend = {"sources"},
|
-- opts_extend = {"sources"},
|
||||||
opts = {
|
opts = {
|
||||||
sources = {
|
sources = {
|
||||||
default = { "lsp", "snippets", "path", "markdown", "lazydev", "buffer" },
|
default = { "lsp", "snippets", "path", "markdown", "lazydev", "buffer" },
|
||||||
providers = {
|
providers = {
|
||||||
markdown = { name = "RenderMarkdown", module = "render-markdown.integ.blink" },
|
markdown = { name = "RenderMarkdown", module = "render-markdown.integ.blink" },
|
||||||
|
ripgrep = {
|
||||||
|
module = "blink-ripgrep",
|
||||||
|
name = "Ripgrep",
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
appearance = {
|
appearance = {
|
||||||
|
@ -67,6 +74,12 @@ return {
|
||||||
["<C-p>"] = { "snippet_backward" },
|
["<C-p>"] = { "snippet_backward" },
|
||||||
["<Up>"] = { "select_prev", "fallback" },
|
["<Up>"] = { "select_prev", "fallback" },
|
||||||
["<Down>"] = { "select_next", "fallback" },
|
["<Down>"] = { "select_next", "fallback" },
|
||||||
|
["<C-g>"] = {
|
||||||
|
function()
|
||||||
|
-- invoke manually, requires blink >v0.8.0
|
||||||
|
require("blink-cmp").show({ sources = { "ripgrep" } })
|
||||||
|
end,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue