mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
* nvim: Add copilot completions * nvim: grug-far buffer won't show lualine & winbar now * nvim: remove obsidian.nvim * nvim: luasnip now works * emacs: more keymaps in org-mode * emacs: start customizing leader keys * shell: Add more ls aliases * shell: Add apt alias in fish
50 lines
994 B
Lua
50 lines
994 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 = "",
|
|
Copilot = "",
|
|
},
|
|
}
|
|
|
|
return M
|