Skip to content

Commit

Permalink
bugfix for local var icon
Browse files Browse the repository at this point in the history
  • Loading branch information
jayli committed Jan 1, 2024
1 parent 587c96c commit 9e29dc1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions custom-config.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ vim.g.easycomplete_kind_icons = {
tabnine = "󱙺",
operator = "󰞷",
class = "",
local = "",
constant = "",
enum = "",
field = "",
Expand Down
3 changes: 2 additions & 1 deletion plugin/easycomplete.vim
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,15 @@ if g:easycomplete_nerd_font == 1
\ 'const': get(kind_icons, "const", ""), 'alias': get(kind_icons, 'alias', ""),
\ 'let': get(kind_icons, "let", ""), 'parameter': get(kind_icons, 'parameter', "󰏗"),
\ 'operator': get(kind_icons, 'operator', "󱧕"), 'property': get(kind_icons, 'property', "󰙅"),
\ 'local': get(kind_icons, 'local', "󱘫"),
\ 'r':'', 't':'',
\ 'f':'f', 'c':'',
\ 'u':'𝘶', 'e':'𝘦',
\ 's':'󰙅', 'v':'',
\ 'i':'𝘪', 'm':'',
\ 'p':'𝘱', 'k':'𝘬',
\ 'o':"󱧕", 'd':'𝘥',
\ 'l':"𝘭", 'a':"𝘢",
\ 'l':"󱘫", 'a':"𝘢",
\ }
endif

Expand Down

0 comments on commit 9e29dc1

Please sign in to comment.