This commit is contained in:
Natty 2024-02-10 16:27:42 +01:00
parent 7afdcaf81a
commit 0e537b06ae
Signed by: natty
GPG Key ID: BF6CB659ADEE60EC
2 changed files with 68 additions and 1 deletions

View File

@ -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 = {

View File

@ -273,5 +273,24 @@ return {{
-- return the final configuration table
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,
}}