Skip to content

Commit

Permalink
chore: remove deprecated icons in nerdfonts v3.0.0 (#479)
Browse files Browse the repository at this point in the history
  • Loading branch information
nekowinston authored May 7, 2023
1 parent af83902 commit ce06ac2
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 31 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -598,17 +598,17 @@ ctp_feline.setup({
left_separator = "",
right_separator = "",
mode_icon = "",
dir = "",
file = "",
dir = "󰉖",
file = "󰈙",
lsp = {
server = "",
server = "󰅡",
error = "",
warning = "",
info = "",
hint = "",
},
git = {
branch = "",
branch = "",
added = "",
changed = "",
removed = "",
Expand Down
8 changes: 4 additions & 4 deletions doc/catppuccin.txt
Original file line number Diff line number Diff line change
Expand Up @@ -691,17 +691,17 @@ Here are the defaults:
left_separator = "",
right_separator = "",
mode_icon = "",
dir = "",
file = "",
dir = "󰉖",
file = "󰈙",
lsp = {
server = "",
server = "󰅡",
error = "",
warning = "",
info = "",
hint = "",
},
git = {
branch = "",
branch = "",
added = "",
changed = "",
removed = "",
Expand Down
10 changes: 5 additions & 5 deletions lua/catppuccin/groups/integrations/feline.lua
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@ local assets = {
left_separator = "",
right_separator = "",
mode_icon = "",
dir = "",
file = "",
dir = "󰉖",
file = "󰈙",
lsp = {
server = "",
server = "󰅡",
error = "",
warning = "",
info = "",
hint = "",
},
git = {
branch = "",
branch = "",
added = "",
changed = "",
removed = "",
Expand Down Expand Up @@ -301,7 +301,7 @@ function M.get()
local title = Lsp.title or ""
local spinners = {
"",
"",
"󰀚",
"",
}
local success_icon = {
Expand Down
36 changes: 18 additions & 18 deletions lua/catppuccin/groups/integrations/lsp_saga.lua
Original file line number Diff line number Diff line change
Expand Up @@ -74,40 +74,40 @@ end

function M.custom_kind()
return {
File = { " ", "LspKindFile" },
File = { "󰈙 ", "LspKindFile" },
Module = { "", "LspKindModule" },
Namespace = { " ", "LspKindNamespace" },
Package = { " ", "LspKindPackage" },
Class = { " ", "LspKindClass" },
Namespace = { "󰌗 ", "LspKindNamespace" },
Package = { "󰏖 ", "LspKindPackage" },
Class = { "󰌗 ", "LspKindClass" },
Method = { "", "LspKindMethod" },
Property = { " ", "LspKindProperty" },
Property = { "󰆧 ", "LspKindProperty" },
Field = { "", "LspKindField" },
Constructor = { "", "LspKindConstructor" },
Enum = { "", "LspKindEnum" },
Enum = { "󰒻", "LspKindEnum" },
Interface = { "", "LspKindInterface" },
Function = { " ", "LspKindFunction" },
Function = { "󰊕 ", "LspKindFunction" },
Variable = { "", "LspKindVariable" },
Constant = { "", "LspKindConstant" },
String = { " ", "LspKindString" },
Number = { " ", "LspKindNumber" },
String = { "󰀬 ", "LspKindString" },
Number = { "󰎠 ", "LspKindNumber" },
Boolean = { "", "LspKindBoolean" },
Array = { " ", "LspKindArray" },
Object = { " ", "LspKindObject" },
Key = { " ", "LspKindKey" },
Array = { "󰅪 ", "LspKindArray" },
Object = { "󰅩 ", "LspKindObject" },
Key = { "󰌋 ", "LspKindKey" },
Null = { "", "LspKindNull" },
EnumMember = { "", "LspKindEnumMember" },
Struct = { " ", "LspKindStruct" },
Struct = { "󰌗 ", "LspKindStruct" },
Event = { "", "LspKindEvent" },
Operator = { " ", "LspKindOperator" },
TypeParameter = { " ", "LspKindTypeParameter" },
Operator = { "󰆕 ", "LspKindOperator" },
TypeParameter = { "󰊄 ", "LspKindTypeParameter" },
TypeAlias = { "", "LspKindTypeAlias" },
Parameter = { "", "LspKindParameter" },
StaticMethod = { " ", "LspKindStaticMethod" },
StaticMethod = { "󰠄 ", "LspKindStaticMethod" },
Macro = { "", "LspKindMacro" },
Text = { " ", "LspKindText" },
Text = { "󰉿 ", "LspKindText" },
Snippet = { "", "LspKindSnippet" },
Folder = { "", "LspKindFolder" },
Unit = { " ", "LspKindUnit" },
Unit = { "󰉻 ", "LspKindUnit" },
Value = { "", "LspKindValue" },
}
end
Expand Down

0 comments on commit ce06ac2

Please sign in to comment.