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,
|
||||
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",
|
||||
heirline = {
|
||||
separators = {
|
||||
|
|
19
plugins.lua
19
plugins.lua
|
@ -274,4 +274,23 @@ return {{
|
|||
-- return the final configuration table
|
||||
return opts
|
||||
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