decrease space between cmp symbols

This commit is contained in:
Vladan Popovic 2024-04-18 14:49:55 +02:00
parent 7a61c5ef16
commit eaaf6db7ad
1 changed files with 25 additions and 25 deletions

View File

@ -6,31 +6,31 @@ utils.opt('o', 'completeopt', 'menuone,noselect')
local cmp = require('cmp')
local cmp_kinds = {
Text = ' ',
Method = '󰊕 ',
Function = '󰊕 ',
Constructor = ' ',
Field = ' ',
Variable = ' ',
Class = ' ',
Interface = ' ',
Module = ' ',
Property = ' ',
Unit = ' ',
Value = ' ',
Enum = ' ',
Keyword = ' ',
Snippet = ' ',
Color = ' ',
File = ' ',
Reference = ' ',
Folder = ' ',
EnumMember = ' ',
Constant = ' ',
Struct = ' ',
Event = ' ',
Operator = ' ',
TypeParameter = ' ',
Text = '',
Method = '󰊕 ',
Function = '󰊕 ',
Constructor = '',
Field = '',
Variable = '',
Class = '',
Interface = '',
Module = '',
Property = '',
Unit = '',
Value = '',
Enum = '',
Keyword = '',
Snippet = '',
Color = '',
File = '',
Reference = '',
Folder = '',
EnumMember = '',
Constant = '',
Struct = '',
Event = '',
Operator = '',
TypeParameter = '',
}
cmp.setup({