Skip to content

Commit

Permalink
refactor(nvim): update cmp kind icons
Browse files Browse the repository at this point in the history
  • Loading branch information
kutsan committed Nov 12, 2023
1 parent 0903937 commit 8c7638d
Showing 1 changed file with 25 additions and 26 deletions.
51 changes: 25 additions & 26 deletions .config/nvim/plugin/packages/cmp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,31 @@ local luasnip = require('luasnip')
local fn = vim.fn

local kind_icons = {
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 = '',
Copilot = '',
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({
Expand Down

0 comments on commit 8c7638d

Please sign in to comment.