style(config): mini.align icons

This commit is contained in:
Folke Lemaitre 2023-10-11 22:38:38 +02:00
parent d6bc320f20
commit 13366c6488
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -20,65 +20,68 @@ local defaults = {
-- if you want to disable loading options, add `package.loaded["lazyvim.config.options"] = true` to the top of your init.lua -- if you want to disable loading options, add `package.loaded["lazyvim.config.options"] = true` to the top of your init.lua
}, },
-- icons used by other plugins -- icons used by other plugins
-- stylua: ignore
icons = { icons = {
misc = { misc = {
dots = "󰇘", dots = "󰇘",
}, },
dap = { dap = {
Stopped = { "󰁕 ", "DiagnosticWarn", "DapStoppedLine" }, Stopped = { "󰁕 ", "DiagnosticWarn", "DapStoppedLine" },
Breakpoint = "", Breakpoint = "",
BreakpointCondition = "", BreakpointCondition = "",
BreakpointRejected = { "", "DiagnosticError" }, BreakpointRejected = { "", "DiagnosticError" },
LogPoint = ".>", LogPoint = ".>",
}, },
diagnostics = { diagnostics = {
Error = "", Error = "",
Warn = "", Warn = "",
Hint = "", Hint = "",
Info = "", Info = "",
}, },
git = { git = {
added = "", added = "",
modified = "", modified = "",
removed = "", removed = "",
}, },
kinds = { kinds = {
Array = "", Array = "",
Boolean = "", Boolean = "󰨙 ",
Class = "", Class = "",
Codeium = "󰘦 ", Codeium = "󰘦 ",
Color = "", Color = "",
Constant = "", Control = "",
Constructor = "", Collapsed = "",
Copilot = "", Constant = "󰏿 ",
Enum = "", Constructor = "",
EnumMember = "", Copilot = "",
Event = "", Enum = "",
Field = "", EnumMember = "",
File = "", Event = "",
Folder = "", Field = "",
Function = "", File = "",
Interface = "", Folder = "",
Key = "", Function = "󰊕 ",
Keyword = "", Interface = "",
Method = "", Key = "",
Module = "", Keyword = "",
Namespace = "", Method = "󰊕 ",
Null = "", Module = "",
Number = "", Namespace = "󰦮 ",
Object = "", Null = "",
Operator = "", Number = "󰎠 ",
Package = "", Object = "",
Property = "", Operator = "",
Reference = "", Package = "",
Snippet = "", Property = "",
String = "", Reference = "",
Struct = "", Snippet = "",
Text = "", String = "",
Struct = "󰆼 ",
Text = "",
TypeParameter = "", TypeParameter = "",
Unit = "", Unit = "",
Value = "", Value = "",
Variable = " ", Variable = "󰀫 ",
}, },
}, },
} }