diff --git a/lua/config/options.lua b/lua/config/options.lua index a918261..a3f9db2 100644 --- a/lua/config/options.lua +++ b/lua/config/options.lua @@ -53,11 +53,12 @@ vim.g.auto_save = true ---@type boolean Options: -- Animate blinky cursor vim.g.blinky = true ---@type boolean Options: -- Use experimental cmp performance fork -vim.g.cmp_performance_enabled = false ---@type boolean Options: +vim.g.cmp_performance_enabled = true ---@type boolean Options: -- Use dev mode for rootiest plugins vim.g.rootiest_dev = false ---@type boolean Options: -- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ AI TOOL ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ +-- Configure the AI completion provider vim.g.aitool = "neocodeium" ---@type string Options: [ai tool] -- ╭───────────────────────────╮  neocodeium -- │ │  codeium @@ -141,7 +142,7 @@ vim.o.background = "dark" ---@type string Options: -- Disable Transparency vim.g.disable_transparency = true ---@type boolean Options: -- Set colorcolumn -vim.opt.colorcolumn = "120" ---@type string|table Options: [column] +--vim.opt.colorcolumn = "120" ---@type string|table Options: [column] -- ━━━━━━━━━━━━━━━━━━━━━━━━━ Tabs and Indentation ━━━━━━━━━━━━━━━━━━━━━━━━ -- Define characters for tabs, indents, and scopes @@ -168,7 +169,7 @@ vim.g.scope_char_name = "scope" ---@type string Options: [scope char] -- -- Indent character -- vim.g.indent_char = "¶" ---@type string Options: [indent char] -- Scope character --- vim.g.scope_char = "|" ---@type string Options: [scope char] +-- vim.g.scope_char = "" ---@type string Options: [scope char] -- ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ Completion ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ diff --git a/lua/data/deps.lua b/lua/data/deps.lua index 4834b5d..fac64f0 100644 --- a/lua/data/deps.lua +++ b/lua/data/deps.lua @@ -107,7 +107,6 @@ M.lualine = { --- Minuet plugin dependencies M.minuet = { { "nvim-lua/plenary.nvim" }, - { "hrsh7th/nvim-cmp" }, } --- MusicControls plugin dependencies diff --git a/lua/plugins/editor.lua b/lua/plugins/editor.lua index 619ee1c..946eef7 100644 --- a/lua/plugins/editor.lua +++ b/lua/plugins/editor.lua @@ -62,10 +62,10 @@ return { event = "BufReadPre", opts = {}, }, - { -- DeadColumn - "Bekaboo/deadcolumn.nvim", - event = "BufEnter", - }, + -- { -- DeadColumn + -- "Bekaboo/deadcolumn.nvim", + -- -- event = "BufEnter", + -- }, { -- Precognition "tris203/precognition.nvim", lazy = true, @@ -183,4 +183,6 @@ return { }) end, }, + { "nvchad/volt", lazy = true }, + { "nvchad/minty", lazy = true }, }