dev: automated commit - 2025-12-22 18:24:50

This commit is contained in:
Mariano Z. 2025-12-22 18:24:50 -03:00
parent bd85b39f04
commit 58fc613888
3 changed files with 82 additions and 92 deletions

View file

@ -18,6 +18,7 @@
"mini.ai": { "branch": "main", "commit": "bfb26d9072670c3aaefab0f53024b2f3729c8083" }, "mini.ai": { "branch": "main", "commit": "bfb26d9072670c3aaefab0f53024b2f3729c8083" },
"mini.icons": { "branch": "main", "commit": "ff2e4f1d29f659cc2bad0f9256f2f6195c6b2428" }, "mini.icons": { "branch": "main", "commit": "ff2e4f1d29f659cc2bad0f9256f2f6195c6b2428" },
"mini.statusline": { "branch": "main", "commit": "3e96596ebe51b899874d8174409cdc4f3c749d9a" }, "mini.statusline": { "branch": "main", "commit": "3e96596ebe51b899874d8174409cdc4f3c749d9a" },
"nightfox.nvim": { "branch": "main", "commit": "ba47d4b4c5ec308718641ba7402c143836f35aa9" },
"nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" }, "nui.nvim": { "branch": "main", "commit": "de740991c12411b663994b2860f1a4fd0937c130" },
"nvim-colorizer.lua": { "branch": "master", "commit": "a065833f35a3a7cc3ef137ac88b5381da2ba302e" }, "nvim-colorizer.lua": { "branch": "master", "commit": "a065833f35a3a7cc3ef137ac88b5381da2ba302e" },
"nvim-dbee": { "branch": "master", "commit": "dda517694889a5d238d7aa407403984da9f80cc0" }, "nvim-dbee": { "branch": "master", "commit": "dda517694889a5d238d7aa407403984da9f80cc0" },

View file

@ -1,7 +1,7 @@
local M = { local M = {
{ {
"EdenEast/nightfox.nvim", "EdenEast/nightfox.nvim",
enabled = false, enabled = true,
priority = 1000, priority = 1000,
config = function() config = function()
vim.cmd("colorscheme nightfox") vim.cmd("colorscheme nightfox")
@ -12,7 +12,7 @@ local M = {
{ {
"rose-pine/neovim", "rose-pine/neovim",
name = "rose-pine", name = "rose-pine",
enabled = true, enabled = false,
priority = 1000, priority = 1000,
opts = { opts = {
variant = "auto", variant = "auto",

View file

@ -1,16 +1,27 @@
local M = { return {
{
"saghen/blink.cmp", "saghen/blink.cmp",
dependencies = { dependencies = {
"nvim-lua/plenary.nvim", "L3MON4D3/LuaSnip",
{ "L3MON4D3/LuaSnip", version = "v2.*" }, "rafamadriz/friendly-snippets",
"folke/lazydev.nvim",
}, },
build = "nix run .#build-plugin",
version = "*", version = "*",
} config = function()
M.config = function()
require("blink.cmp").setup({ require("blink.cmp").setup({
snippets = { preset = "luasnip" },
signature = { enabled = true },
appearance = {
use_nvim_cmp_as_default = false,
nerd_font_variant = "normal",
},
sources = {
default = { "lsp", "path", "snippets", "buffer" },
providers = {
cmdline = {
min_keyword_length = 2,
},
},
},
keymap = { keymap = {
["<C-space>"] = { ["<C-space>"] = {
"show", "show",
@ -20,31 +31,15 @@ M.config = function()
["<C-d>"] = { "hide", "fallback" }, ["<C-d>"] = { "hide", "fallback" },
["<C-c>"] = { "hide", "fallback" }, ["<C-c>"] = { "hide", "fallback" },
["<CR>"] = { "accept", "fallback" }, ["<CR>"] = { "accept", "fallback" },
["<C-k>"] = { "select_prev", "fallback" }, ["<C-k>"] = { "select_prev", "fallback" },
["<C-j>"] = { "select_next", "fallback" }, ["<C-j>"] = { "select_next", "fallback" },
}, },
appearance = { cmdline = {
use_nvim_cmp_as_default = true,
nerd_font_variant = "mono",
},
snippets = {
preset = "luasnip",
},
sources = {
default = { "lsp", "path", "snippets", "buffer", "lazydev" },
providers = {
lazydev = { module = "lazydev.integrations.blink", score_offset = 100 },
},
},
signature = {
enabled = true, enabled = true,
window = { completion = { menu = { auto_show = true } },
border = "rounded", keymap = {
["<CR>"] = { "accept_and_enter", "fallback" },
}, },
}, },
@ -57,25 +52,17 @@ M.config = function()
}, },
menu = { menu = {
border = "rounded", border = "rounded",
scrolloff = 1,
scrollbar = true,
draw = { draw = {
components = { columns = {
kind_icon = { { "kind_icon" },
ellipsis = false, { "label", "label_description", gap = 1 },
text = function(ctx) { "kind" },
local kind_icon, _, _ = require("mini.icons").get("lsp", ctx.kind) { "source_name" },
return kind_icon
end,
highlight = function(ctx)
local _, hl, _ = require("mini.icons").get("lsp", ctx.kind)
return hl
end,
}, },
}, },
}, },
auto_show = function(ctx)
return ctx.mode ~= "default"
end,
},
documentation = { documentation = {
auto_show = true, auto_show = true,
auto_show_delay_ms = 200, auto_show_delay_ms = 200,
@ -94,6 +81,8 @@ M.config = function()
sorts = { "score", "sort_text" }, sorts = { "score", "sort_text" },
}, },
}) })
end
return M require("luasnip.loaders.from_vscode").lazy_load()
end,
},
}