diff options
| author | Christian Chiarulli <[email protected]> | 2022-12-22 01:17:00 -0500 | 
|---|---|---|
| committer | GitHub <[email protected]> | 2022-12-22 01:17:00 -0500 | 
| commit | 3262e5081830483212a197dca25b86d8441466d7 (patch) | |
| tree | 92e20aed316d5214348316c69da0d222e2d127d1 /lua/lvim | |
| parent | 1f92c074131dbd192dfd14b506b38a0f5341786d (diff) | |
feat: use codicons that are available for nerdfonts now (#3646)
Diffstat (limited to 'lua/lvim')
| -rw-r--r-- | lua/lvim/icons.lua | 164 | 
1 files changed, 82 insertions, 82 deletions
| diff --git a/lua/lvim/icons.lua b/lua/lvim/icons.lua index d0f0cf69..891e1262 100644 --- a/lua/lvim/icons.lua +++ b/lua/lvim/icons.lua @@ -1,54 +1,54 @@  return {    kind = { -    Array = "", -    Boolean = "蘒", -    Class = "", -    Color = "", -    Constant = "", -    Constructor = "", -    Enum = "", -    EnumMember = "", -    Event = "", -    Field = "", -    File = "", +    Array = "", +    Boolean = "", +    Class = "", +    Color = "", +    Constant = "", +    Constructor = "", +    Enum = "", +    EnumMember = "", +    Event = "", +    Field = "", +    File = "",      Folder = "", -    Function = "", -    Interface = "", -    Key = "", -    Keyword = "", -    Method = "", -    Module = "", -    Namespace = "", +    Function = "", +    Interface = "", +    Key = "", +    Keyword = "", +    Method = "", +    Module = "", +    Namespace = "",      Null = "ﳠ", -    Number = "", -    Object = "", -    Operator = "", -    Package = "", -    Property = "", -    Reference = "", -    Snippet = "", -    String = "", -    Struct = "", -    Text = "", -    TypeParameter = "", -    Unit = "", -    Value = "", -    Variable = "", +    Number = "", +    Object = "", +    Operator = "", +    Package = "", +    Property = "", +    Reference = "", +    Snippet = "", +    String = "", +    Struct = "", +    Text = "", +    TypeParameter = "", +    Unit = "", +    Value = "", +    Variable = "",    },    git = { -    LineAdded = "", -    LineModified = "", -    LineRemoved = "", -    FileDeleted = "", +    LineAdded = "", +    LineModified = "", +    LineRemoved = "", +    FileDeleted = "",      FileIgnored = "◌", -    FileRenamed = "➜", +    FileRenamed = "",      FileStaged = "S", -    FileUnmerged = "", +    FileUnmerged = "",      FileUnstaged = "",      FileUntracked = "U", -    Diff = "", -    Repo = "", -    Octoface = "", +    Diff = "", +    Repo = "", +    Octoface = "",      Branch = "",    },    ui = { @@ -64,15 +64,15 @@ return {      BoldDividerLeft = "",      BoldDividerRight = "",      BoldLineLeft = "▎", -    BookMark = "", +    BookMark = "",      BoxChecked = "", -    Bug = "", -    Stacks = " ", +    Bug = "", +    Stacks = "",      Scopes = "",      Watches = "", -    DebugConsole = " ", -    Calendar = "", -    Check = "", +    DebugConsole = "", +    Calendar = "", +    Check = "",      ChevronRight = ">",      ChevronShortDown = "",      ChevronShortLeft = "", @@ -80,46 +80,46 @@ return {      ChevronShortUp = "",      Circle = "",      Close = "", -    CloudDownload = "", -    Code = "", -    Comment = "", -    Dashboard = "", +    CloudDownload = "", +    Code = "", +    Comment = "", +    Dashboard = "",      DividerLeft = "",      DividerRight = "",      DoubleChevronRight = "»", -    Ellipsis = "…", +    Ellipsis = "",      EmptyFolder = "",      EmptyFolderOpen = "", -    File = "", -    FileSymlink = "", -    Files = "", +    File = "", +    FileSymlink = "", +    Files = "",      FindFile = "",      FindText = "", -    Fire = "", +    Fire = "",      Folder = "",      FolderOpen = "",      FolderSymlink = "",      Forward = "", -    Gear = "", -    History = "", -    Lightbulb = "", +    Gear = "", +    History = "", +    Lightbulb = "",      LineLeft = "▏",      LineMiddle = "│", -    List = "", -    Lock = "", -    NewFile = "", -    Note = "", -    Package = "", +    List = "", +    Lock = "", +    NewFile = "", +    Note = "", +    Package = "",      Pencil = "",      Plus = "", -    Project = "", -    Search = "", -    SignIn = "", -    SignOut = "", +    Project = "", +    Search = "", +    SignIn = "", +    SignOut = "",      Tab = "", -    Table = "", +    Table = "",      Target = "", -    Telescope = "", +    Telescope = "",      Text = "",      Tree = "",      Triangle = "契", @@ -130,25 +130,25 @@ return {    },    diagnostics = {      BoldError = "", -    Error = "", +    Error = "",      BoldWarning = "", -    Warning = "", +    Warning = "",      BoldInformation = "", -    Information = "", +    Information = "",      BoldQuestion = "", -    Question = "", -    BoldHint = "", +    Question = "", +    BoldHint = "",      Hint = "", -    Debug = "", +    Debug = "",      Trace = "✎",    },    misc = {      Robot = "ﮧ", -    Squirrel = "", -    Tag = "", -    Watch = "", -    Smiley = "ﲃ", -    Package = "", -    CircuitBoard = "", +    Squirrel = "", +    Tag = "", +    Watch = "", +    Smiley = "", +    Package = "", +    CircuitBoard = "",    },  } | 
