Codicons
This commit is contained in:
parent
7afdcaf81a
commit
0e537b06ae
48
init.lua
48
init.lua
|
@ -11,6 +11,54 @@ local config = {
|
||||||
auto_quit = false,
|
auto_quit = false,
|
||||||
remotes = {}
|
remotes = {}
|
||||||
},
|
},
|
||||||
|
icons = {
|
||||||
|
ActiveLSP = "",
|
||||||
|
ActiveTS = "",
|
||||||
|
ArrowLeft = "",
|
||||||
|
ArrowRight = "",
|
||||||
|
BufferClose = "",
|
||||||
|
DapBreakpoint = "",
|
||||||
|
DapBreakpointCondition = "",
|
||||||
|
DapBreakpointRejected = "",
|
||||||
|
DapLogPoint = ".>",
|
||||||
|
DapStopped = "",
|
||||||
|
DefaultFile = "",
|
||||||
|
Diagnostic = "",
|
||||||
|
DiagnosticError = "",
|
||||||
|
DiagnosticHint = "",
|
||||||
|
DiagnosticInfo = "",
|
||||||
|
DiagnosticWarn = "",
|
||||||
|
Ellipsis = "…",
|
||||||
|
FileModified = "",
|
||||||
|
FileReadOnly = "",
|
||||||
|
FoldClosed = "",
|
||||||
|
FoldOpened = "",
|
||||||
|
FoldSeparator = " ",
|
||||||
|
FolderClosed = "",
|
||||||
|
FolderEmpty = "",
|
||||||
|
FolderOpen = "",
|
||||||
|
Git = "",
|
||||||
|
GitAdd = "",
|
||||||
|
GitBranch = "",
|
||||||
|
GitChange = "",
|
||||||
|
GitConflict = "",
|
||||||
|
GitDelete = "",
|
||||||
|
GitIgnored = "",
|
||||||
|
GitRenamed = "",
|
||||||
|
GitStaged = "",
|
||||||
|
GitUnstaged = "",
|
||||||
|
GitUntracked = "",
|
||||||
|
LSPLoaded = "",
|
||||||
|
LSPLoading1 = "",
|
||||||
|
LSPLoading2 = "",
|
||||||
|
LSPLoading3 = "",
|
||||||
|
MacroRecording = "",
|
||||||
|
Paste = "",
|
||||||
|
Spellcheck = "",
|
||||||
|
Search = "",
|
||||||
|
Selected = "",
|
||||||
|
TabClose = "",
|
||||||
|
},
|
||||||
colorscheme = "catppuccin",
|
colorscheme = "catppuccin",
|
||||||
heirline = {
|
heirline = {
|
||||||
separators = {
|
separators = {
|
||||||
|
|
21
plugins.lua
21
plugins.lua
|
@ -273,5 +273,24 @@ return {{
|
||||||
|
|
||||||
-- return the final configuration table
|
-- return the final configuration table
|
||||||
return opts
|
return opts
|
||||||
end,
|
end,
|
||||||
|
}, {
|
||||||
|
"onsails/lspkind.nvim",
|
||||||
|
opts = function(_, opts)
|
||||||
|
-- use codicons preset
|
||||||
|
opts.preset = "codicons"
|
||||||
|
-- set some missing symbol types
|
||||||
|
opts.symbol_map = {
|
||||||
|
Array = "",
|
||||||
|
Boolean = "",
|
||||||
|
Key = "",
|
||||||
|
Namespace = "",
|
||||||
|
Null = "",
|
||||||
|
Number = "",
|
||||||
|
Object = "",
|
||||||
|
Package = "",
|
||||||
|
String = "",
|
||||||
|
}
|
||||||
|
return opts
|
||||||
|
end,
|
||||||
}}
|
}}
|
||||||
|
|
Loading…
Reference in New Issue