mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-07-24 04:24:31 +02:00
add: master icon
This commit is contained in:
parent
e328116fbd
commit
3afde9ce70
7 changed files with 29 additions and 15 deletions
|
@ -49,7 +49,7 @@ bufferline.setup({
|
|||
middle_mouse_command = nil,
|
||||
|
||||
indicator_icon = nil,
|
||||
indicator = { style = "icon", icon = "▎" },
|
||||
indicator = { style = "icon", icon = icons.ui.BoldLineLeft },
|
||||
buffer_close_icon = icons.ui.Close,
|
||||
modified_icon = icons.ui.Circle,
|
||||
close_icon = icons.ui.BoldClose,
|
||||
|
|
|
@ -51,6 +51,7 @@ return {
|
|||
Repo = "",
|
||||
Octoface = "",
|
||||
Branch = "",
|
||||
Branch2 = "",
|
||||
},
|
||||
ui = {
|
||||
ArrowCircleDown = "",
|
||||
|
@ -133,6 +134,14 @@ return {
|
|||
TriangleShortArrowRight = "",
|
||||
TriangleShortArrowUp = "",
|
||||
Neovim = "",
|
||||
BlankCircle = " ",
|
||||
CheckCircle = " ",
|
||||
DotCircle = " ",
|
||||
Border = { "╭", "─", "╮", "│", "╯", "─", "╰", "│" },
|
||||
ProjekFolder = "",
|
||||
Bell = "",
|
||||
ft = "",
|
||||
not_loaded = "",
|
||||
},
|
||||
diagnostics = {
|
||||
BoldError = "",
|
||||
|
|
|
@ -26,17 +26,19 @@ if data_ok then
|
|||
end
|
||||
end
|
||||
|
||||
local icons = require("user.icons").ui
|
||||
|
||||
local settings = {
|
||||
ui = {
|
||||
-- border = "none",
|
||||
border = { "╭", "─", "╮", "│", "╯", "─", "╰", "│" },
|
||||
border = icons.Border,
|
||||
icons = {
|
||||
-- package_installed = "◍",
|
||||
-- package_pending = "◍",
|
||||
-- package_uninstalled = "◍",
|
||||
package_pending = " ",
|
||||
package_installed = " ",
|
||||
package_uninstalled = " ",
|
||||
package_pending = icons.DotCircle,
|
||||
package_installed = icons.CheckCircle,
|
||||
package_uninstalled = icons.BlankCircle,
|
||||
},
|
||||
keymaps = {
|
||||
-- Keymap to expand a server in the UI
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue