mirror of
https://github.com/NvChad/NvChad.git
synced 2024-11-04 12:00:29 +00:00
config(cmp): correcting completeopt setup
From the neovim doc, In Vimscript: `set completeopt=menu,menuone,noselect` In Lua using `vim.o`: `vim.o.completeopt = 'menu,menuone,noselect'` In Lua using `vim.opt`: `vim.opt.wildignore = { 'menu', 'menuoune', 'noselect' }`
This commit is contained in:
parent
d2f0fb316b
commit
b142f4c99d
@ -6,7 +6,7 @@ end
|
||||
|
||||
require("base46").load_highlight "cmp"
|
||||
|
||||
vim.opt.completeopt = "menuone,noselect"
|
||||
vim.o.completeopt = "menu,menuone,noselect"
|
||||
|
||||
local function border(hl_name)
|
||||
return {
|
||||
|
Loading…
Reference in New Issue
Block a user