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
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -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…
	
	Add table
		Add a link
		
	
		Reference in a new issue