Skip to content

Commit f6d0ebb

Browse files
committed
refactor(cmp,mini): use stable fork of cmp, mini-notify transparency
1 parent fde8e83 commit f6d0ebb

File tree

5 files changed

+16
-21
lines changed

5 files changed

+16
-21
lines changed

lazy-lock.json

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,14 @@
11
{
2-
"catppuccin": { "branch": "main", "commit": "63685e1562ef53873c9764b483d7ac5c7a608922" },
3-
"cmp": { "branch": "perf", "commit": "6c3d595f3223c1ae7392d4fde1626355439af6c1" },
2+
"catppuccin": { "branch": "main", "commit": "7be452ee067978cdc8b2c5f3411f0c71ffa612b9" },
3+
"cmp": { "branch": "main", "commit": "79f8d1aee3f7117994b5a07694d6eade81057390" },
44
"cmp-async-path": { "branch": "main", "commit": "03fac5dfd6f7880be2c059d58bebe007f0d6d8ee" },
55
"cmp-buffer": { "branch": "main", "commit": "3022dbc9166796b644a841a02de8dd1cc1d311fa" },
66
"cmp-nvim-lsp": { "branch": "main", "commit": "39e2eda76828d88b773cc27a3f61d2ad782c922d" },
77
"dropbar": { "branch": "master", "commit": "669e325489202ae4da5a951314bbf8dbb20e7cff" },
88
"lazy.nvim": { "branch": "main", "commit": "1159bdccd8910a0fd0914b24d6c3d186689023d9" },
9-
"lsp_signature.nvim": { "branch": "master", "commit": "fc38521ea4d9ec8dbd4c2819ba8126cea743943b" },
10-
"lspconfig": { "branch": "master", "commit": "38cd54b7063c4c45fb37c73ebfbd776939d0cfde" },
11-
"mini": { "branch": "main", "commit": "848c5e8f428faf843051768e0d56104cd02aea1f" },
9+
"lspconfig": { "branch": "master", "commit": "dcf511d53fae9675c6fde4241d94b2daaa5e0cd5" },
10+
"mini": { "branch": "main", "commit": "61e5d46fc0cf71306c51275383767d996f559a60" },
1211
"plenary.nvim": { "branch": "master", "commit": "2d9b06177a975543726ce5c73fca176cedbffe9d" },
13-
"render-markdown.nvim": { "branch": "main", "commit": "e91b042b3865d2d040a0e21e0a3b13fb57f24094" },
14-
"treesitter": { "branch": "master", "commit": "98a33cc524c85a78a1ff5a707998629b24cbf8c2" }
12+
"render-markdown.nvim": { "branch": "main", "commit": "fe1002fddc61207e4ef4325d4bc0ca33697bbc7a" },
13+
"treesitter": { "branch": "master", "commit": "4f04fb7027ce786ac4adfd1c629ca40aea96ffec" }
1514
}

lua/mappings.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ M.lsp = function()
145145
vim.lsp.buf.format { async = true }
146146
end, "Lsp format")
147147
map("n", "<leader>lc", vim.lsp.buf.rename, "Lsp rename")
148-
map({ "i", "s" }, "<c-space>", vim.lsp.buf.signature_help, "Lsp signature help")
148+
map({ "i", "x" }, "<c-space>", vim.lsp.buf.signature_help, "Lsp signature help")
149149
end,
150150
})
151151
end

lua/plugins/colorscheme.lua

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
local options = {
2+
transparent_background = true,
23
compile_path = vim.fn.stdpath "cache" .. "/catppuccin",
34
compile = true,
45
flavour = "mocha",

lua/plugins/init.lua

+1-12
Original file line numberDiff line numberDiff line change
@@ -107,9 +107,8 @@ local plugins = {
107107

108108
--- Completion menu stuffs
109109
{
110-
"yioneko/nvim-cmp",
110+
"iguanacucumber/magazine.nvim",
111111
name = "cmp",
112-
branch = "perf",
113112
dependencies = {
114113
"nvim-lua/plenary.nvim",
115114
"hrsh7th/cmp-nvim-lsp",
@@ -143,16 +142,6 @@ local plugins = {
143142
end,
144143
},
145144

146-
{
147-
"ray-x/lsp_signature.nvim",
148-
event = "LspAttach",
149-
config = function()
150-
require("lsp_signature").setup {
151-
hint_prefix = "",
152-
}
153-
end,
154-
},
155-
156145
{
157146
"MeanderingProgrammer/render-markdown.nvim",
158147
ft = "markdown",

lua/plugins/mini_nvim.lua

+7-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,13 @@ M.clue = {
109109
},
110110
}
111111

112-
M.notify = {}
112+
M.notify = {
113+
window = {
114+
winblend = 0,
115+
116+
},
117+
118+
}
113119

114120
M.git = {}
115121

0 commit comments

Comments
 (0)