perf: improve cmp performance
This commit is contained in:
@@ -53,11 +53,12 @@ vim.g.auto_save = true ---@type boolean Options: <true|false>
|
|||||||
-- Animate blinky cursor
|
-- Animate blinky cursor
|
||||||
vim.g.blinky = true ---@type boolean Options: <true|false>
|
vim.g.blinky = true ---@type boolean Options: <true|false>
|
||||||
-- Use experimental cmp performance fork
|
-- Use experimental cmp performance fork
|
||||||
vim.g.cmp_performance_enabled = false ---@type boolean Options: <true|false>
|
vim.g.cmp_performance_enabled = true ---@type boolean Options: <true|false>
|
||||||
-- Use dev mode for rootiest plugins
|
-- Use dev mode for rootiest plugins
|
||||||
vim.g.rootiest_dev = false ---@type boolean Options: <true|false>
|
vim.g.rootiest_dev = false ---@type boolean Options: <true|false>
|
||||||
|
|
||||||
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ AI TOOL ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ AI TOOL ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
|
-- Configure the AI completion provider
|
||||||
vim.g.aitool = "neocodeium" ---@type string Options: [ai tool]
|
vim.g.aitool = "neocodeium" ---@type string Options: [ai tool]
|
||||||
-- ╭───────────────────────────╮ neocodeium
|
-- ╭───────────────────────────╮ neocodeium
|
||||||
-- │ │ codeium
|
-- │ │ codeium
|
||||||
@@ -141,7 +142,7 @@ vim.o.background = "dark" ---@type string Options: <dark|light>
|
|||||||
-- Disable Transparency
|
-- Disable Transparency
|
||||||
vim.g.disable_transparency = true ---@type boolean Options: <true|false>
|
vim.g.disable_transparency = true ---@type boolean Options: <true|false>
|
||||||
-- Set colorcolumn
|
-- Set colorcolumn
|
||||||
vim.opt.colorcolumn = "120" ---@type string|table Options: [column]
|
--vim.opt.colorcolumn = "120" ---@type string|table Options: [column]
|
||||||
|
|
||||||
-- ━━━━━━━━━━━━━━━━━━━━━━━━━ Tabs and Indentation ━━━━━━━━━━━━━━━━━━━━━━━━
|
-- ━━━━━━━━━━━━━━━━━━━━━━━━━ Tabs and Indentation ━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
-- Define characters for tabs, indents, and scopes
|
-- Define characters for tabs, indents, and scopes
|
||||||
@@ -168,7 +169,7 @@ vim.g.scope_char_name = "scope" ---@type string Options: [scope char]
|
|||||||
-- -- Indent character
|
-- -- Indent character
|
||||||
-- vim.g.indent_char = "¶" ---@type string Options: [indent char]
|
-- vim.g.indent_char = "¶" ---@type string Options: [indent char]
|
||||||
-- Scope character
|
-- Scope character
|
||||||
-- vim.g.scope_char = "|" ---@type string Options: [scope char]
|
-- vim.g.scope_char = "" ---@type string Options: [scope char]
|
||||||
|
|
||||||
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Completion ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
-- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Completion ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
|
||||||
|
|
||||||
|
|||||||
@@ -107,7 +107,6 @@ M.lualine = {
|
|||||||
--- Minuet plugin dependencies
|
--- Minuet plugin dependencies
|
||||||
M.minuet = {
|
M.minuet = {
|
||||||
{ "nvim-lua/plenary.nvim" },
|
{ "nvim-lua/plenary.nvim" },
|
||||||
{ "hrsh7th/nvim-cmp" },
|
|
||||||
}
|
}
|
||||||
|
|
||||||
--- MusicControls plugin dependencies
|
--- MusicControls plugin dependencies
|
||||||
|
|||||||
@@ -62,10 +62,10 @@ return {
|
|||||||
event = "BufReadPre",
|
event = "BufReadPre",
|
||||||
opts = {},
|
opts = {},
|
||||||
},
|
},
|
||||||
{ -- DeadColumn
|
-- { -- DeadColumn
|
||||||
"Bekaboo/deadcolumn.nvim",
|
-- "Bekaboo/deadcolumn.nvim",
|
||||||
event = "BufEnter",
|
-- -- event = "BufEnter",
|
||||||
},
|
-- },
|
||||||
{ -- Precognition
|
{ -- Precognition
|
||||||
"tris203/precognition.nvim",
|
"tris203/precognition.nvim",
|
||||||
lazy = true,
|
lazy = true,
|
||||||
@@ -183,4 +183,6 @@ return {
|
|||||||
})
|
})
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
|
{ "nvchad/volt", lazy = true },
|
||||||
|
{ "nvchad/minty", lazy = true },
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user