mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
* refractor(nvim-lualine): lualine in powerline style * feat(nvim, emacs): Org Mode Integrations Setup * feat(nvim): C-w keymaps * feat(wezterm): Change tab bar to top * feat(nvim): catppuccin integrations * feat(nvim-cmp): Icon supports
49 lines
973 B
Lua
49 lines
973 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 = "",
|
|
},
|
|
lsp_kind = {
|
|
Text = "",
|
|
Method = "",
|
|
Function = "",
|
|
Constructor = "",
|
|
Field = "",
|
|
Variable = "",
|
|
Class = "",
|
|
Interface = "",
|
|
Module = "",
|
|
Property = "",
|
|
Unit = "",
|
|
Value = "",
|
|
Enum = "",
|
|
Keyword = "",
|
|
Snippet = "",
|
|
Color = "",
|
|
File = "",
|
|
Reference = "",
|
|
Folder = "",
|
|
EnumMember = "",
|
|
Constant = "",
|
|
Struct = "",
|
|
Event = "",
|
|
Operator = "",
|
|
TypeParameter = "",
|
|
},
|
|
}
|
|
|
|
return M
|