mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
22 lines
414 B
Lua
22 lines
414 B
Lua
-- icons.lua
|
|
-- All icons used in the configuration are defined in this file.
|
|
-- Currently are only used in diagnostics, lualine, gitsigns
|
|
local M = {
|
|
diagnostics = {
|
|
Error = "",
|
|
Warning = "",
|
|
Hint = "",
|
|
Information = "",
|
|
},
|
|
lsp = "",
|
|
indent = "",
|
|
git = {
|
|
Change = "",
|
|
Add = "",
|
|
Delete = "",
|
|
Rename = "",
|
|
Branch = "",
|
|
},
|
|
}
|
|
|
|
return M
|