2023-12-19 00:55:54 +00:00
|
|
|
local config = {
|
2024-01-20 00:58:39 +00:00
|
|
|
updater = {
|
|
|
|
remote = "origin",
|
|
|
|
channel = "stable",
|
|
|
|
version = "latest",
|
|
|
|
branch = "nightly",
|
|
|
|
commit = nil,
|
|
|
|
pin_plugins = nil,
|
|
|
|
skip_prompts = false,
|
|
|
|
show_changelog = true,
|
|
|
|
auto_quit = false,
|
|
|
|
remotes = {}
|
|
|
|
},
|
2024-02-10 15:27:42 +00:00
|
|
|
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 = "",
|
|
|
|
},
|
2024-01-20 00:58:39 +00:00
|
|
|
colorscheme = "catppuccin",
|
|
|
|
heirline = {
|
|
|
|
separators = {
|
|
|
|
left = { "", " " }, -- separator for the left side of the statusline
|
|
|
|
right = { " ", " " }, -- separator for the right side of the statusline
|
|
|
|
tab = { "", "" },
|
2024-02-10 15:28:53 +00:00
|
|
|
},
|
|
|
|
colors = {
|
|
|
|
tabline_bg = "#181825",
|
|
|
|
tabline_fg = "#181825",
|
|
|
|
buffer_bg = "#21252b"
|
2024-01-20 00:58:39 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
polish = function()
|
|
|
|
end
|
2023-12-19 00:55:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return config
|