2021-08-22 07:49:15 +00:00
|
|
|
|
local colors = require("colors").get()
|
2021-08-26 05:18:13 +00:00
|
|
|
|
local lsp = require "feline.providers.lsp"
|
2021-07-15 15:43:17 +00:00
|
|
|
|
|
2021-08-19 06:29:42 +00:00
|
|
|
|
local icon_styles = {
|
|
|
|
|
default = {
|
|
|
|
|
left = "",
|
|
|
|
|
right = " ",
|
|
|
|
|
main_icon = " ",
|
|
|
|
|
vi_mode_icon = " ",
|
|
|
|
|
position_icon = " ",
|
|
|
|
|
},
|
2021-08-22 07:49:15 +00:00
|
|
|
|
arrow = {
|
|
|
|
|
left = "",
|
|
|
|
|
right = "",
|
2021-08-19 06:29:42 +00:00
|
|
|
|
main_icon = " ",
|
|
|
|
|
vi_mode_icon = " ",
|
|
|
|
|
position_icon = " ",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
block = {
|
|
|
|
|
left = " ",
|
|
|
|
|
right = " ",
|
|
|
|
|
main_icon = " ",
|
|
|
|
|
vi_mode_icon = " ",
|
|
|
|
|
position_icon = " ",
|
|
|
|
|
},
|
2021-08-19 12:05:24 +00:00
|
|
|
|
|
2021-08-22 07:49:15 +00:00
|
|
|
|
round = {
|
|
|
|
|
left = "",
|
|
|
|
|
right = "",
|
|
|
|
|
main_icon = " ",
|
|
|
|
|
vi_mode_icon = " ",
|
|
|
|
|
position_icon = " ",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
slant = {
|
|
|
|
|
left = " ",
|
|
|
|
|
right = " ",
|
2021-08-19 12:05:24 +00:00
|
|
|
|
main_icon = " ",
|
|
|
|
|
vi_mode_icon = " ",
|
|
|
|
|
position_icon = " ",
|
|
|
|
|
},
|
2021-08-19 06:29:42 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-22 07:49:15 +00:00
|
|
|
|
local user_statusline_style = require("core.utils").load_config().ui.plugin.statusline.style
|
2021-08-19 06:29:42 +00:00
|
|
|
|
local statusline_style = icon_styles[user_statusline_style]
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
-- Initialize the components table
|
|
|
|
|
local components = {
|
|
|
|
|
left = { active = {}, inactive = {} },
|
|
|
|
|
mid = { active = {}, inactive = {} },
|
|
|
|
|
right = { active = {}, inactive = {} },
|
2021-07-15 15:43:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.left.active[1] = {
|
|
|
|
|
provider = statusline_style.main_icon,
|
|
|
|
|
|
|
|
|
|
hl = {
|
|
|
|
|
fg = colors.statusline_bg,
|
|
|
|
|
bg = colors.nord_blue,
|
2021-08-16 07:49:09 +00:00
|
|
|
|
},
|
2021-08-26 05:18:13 +00:00
|
|
|
|
|
|
|
|
|
right_sep = { str = statusline_style.right, hl = {
|
|
|
|
|
fg = colors.nord_blue,
|
|
|
|
|
bg = colors.one_bg2,
|
|
|
|
|
} },
|
2021-07-15 15:43:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.left.active[2] = {
|
|
|
|
|
provider = statusline_style.right,
|
|
|
|
|
|
|
|
|
|
hl = {
|
|
|
|
|
fg = colors.one_bg2,
|
|
|
|
|
bg = colors.lightbg,
|
2021-08-19 12:05:24 +00:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.left.active[3] = {
|
|
|
|
|
provider = function()
|
|
|
|
|
local filename = vim.fn.expand "%:t"
|
|
|
|
|
local extension = vim.fn.expand "%:e"
|
|
|
|
|
local icon = require("nvim-web-devicons").get_icon(filename, extension)
|
|
|
|
|
if icon == nil then
|
|
|
|
|
icon = ""
|
|
|
|
|
return icon
|
|
|
|
|
end
|
|
|
|
|
return icon .. " " .. filename .. " "
|
|
|
|
|
end,
|
|
|
|
|
hl = {
|
|
|
|
|
fg = colors.white,
|
|
|
|
|
bg = colors.lightbg,
|
2021-08-16 07:49:09 +00:00
|
|
|
|
},
|
2021-07-15 15:43:17 +00:00
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
right_sep = { str = statusline_style.right, hl = { fg = colors.lightbg, bg = colors.lightbg2 } },
|
|
|
|
|
}
|
2021-08-19 12:43:58 +00:00
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.left.active[4] = {
|
|
|
|
|
provider = function()
|
|
|
|
|
local dir_name = vim.fn.fnamemodify(vim.fn.getcwd(), ":t")
|
|
|
|
|
return " " .. dir_name .. " "
|
|
|
|
|
end,
|
2021-08-19 12:43:58 +00:00
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
hl = {
|
|
|
|
|
fg = colors.grey_fg2,
|
|
|
|
|
bg = colors.lightbg2,
|
2021-08-16 07:49:09 +00:00
|
|
|
|
},
|
2021-08-26 05:18:13 +00:00
|
|
|
|
right_sep = { str = statusline_style.right, hi = {
|
|
|
|
|
fg = colors.lightbg2,
|
|
|
|
|
bg = colors.statusline_bg,
|
|
|
|
|
} },
|
2021-07-15 15:43:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.left.active[5] = {
|
|
|
|
|
provider = "git_diff_added",
|
|
|
|
|
hl = {
|
|
|
|
|
fg = colors.grey_fg2,
|
|
|
|
|
bg = colors.statusline_bg,
|
2021-08-16 07:49:09 +00:00
|
|
|
|
},
|
2021-08-26 05:18:13 +00:00
|
|
|
|
icon = " ",
|
2021-07-15 15:43:17 +00:00
|
|
|
|
}
|
2021-08-26 05:18:13 +00:00
|
|
|
|
-- diffModfified
|
|
|
|
|
components.left.active[6] = {
|
|
|
|
|
provider = "git_diff_changed",
|
|
|
|
|
hl = {
|
|
|
|
|
fg = colors.grey_fg2,
|
|
|
|
|
bg = colors.statusline_bg,
|
2021-08-16 07:49:09 +00:00
|
|
|
|
},
|
2021-08-26 05:18:13 +00:00
|
|
|
|
icon = " ",
|
2021-07-15 15:43:17 +00:00
|
|
|
|
}
|
2021-08-26 05:18:13 +00:00
|
|
|
|
-- diffRemove
|
|
|
|
|
components.left.active[7] = {
|
|
|
|
|
provider = "git_diff_removed",
|
|
|
|
|
hl = {
|
|
|
|
|
fg = colors.grey_fg2,
|
|
|
|
|
bg = colors.statusline_bg,
|
2021-08-16 07:49:09 +00:00
|
|
|
|
},
|
2021-08-26 05:18:13 +00:00
|
|
|
|
icon = " ",
|
2021-07-15 15:43:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.left.active[8] = {
|
|
|
|
|
provider = "diagnostic_errors",
|
|
|
|
|
enabled = function()
|
|
|
|
|
return lsp.diagnostics_exist "Error"
|
|
|
|
|
end,
|
|
|
|
|
hl = { fg = colors.red },
|
|
|
|
|
icon = " ",
|
2021-07-15 15:43:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.left.active[9] = {
|
|
|
|
|
provider = "diagnostic_warnings",
|
|
|
|
|
enabled = function()
|
|
|
|
|
return lsp.diagnostics_exist "Warning"
|
|
|
|
|
end,
|
|
|
|
|
hl = { fg = colors.yellow },
|
|
|
|
|
icon = " ",
|
2021-07-15 15:43:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.left.active[10] = {
|
|
|
|
|
provider = "diagnostic_hints",
|
|
|
|
|
enabled = function()
|
|
|
|
|
return lsp.diagnostics_exist "Hint"
|
|
|
|
|
end,
|
|
|
|
|
hl = { fg = colors.grey_fg2 },
|
|
|
|
|
icon = " ",
|
2021-07-15 15:43:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.left.active[11] = {
|
|
|
|
|
provider = "diagnostic_info",
|
|
|
|
|
enabled = function()
|
|
|
|
|
return lsp.diagnostics_exist "Information"
|
|
|
|
|
end,
|
|
|
|
|
hl = { fg = colors.green },
|
|
|
|
|
icon = " ",
|
2021-07-15 15:43:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.right.active[1] = {
|
|
|
|
|
provider = function()
|
2021-08-26 05:29:37 +00:00
|
|
|
|
if next(vim.lsp.buf_get_clients()) ~= nil then
|
2021-08-26 05:18:13 +00:00
|
|
|
|
return " " .. " " .. " LSP"
|
2021-08-26 05:29:37 +00:00
|
|
|
|
else
|
|
|
|
|
return ""
|
2021-08-26 05:18:13 +00:00
|
|
|
|
end
|
|
|
|
|
end,
|
|
|
|
|
hl = { fg = colors.grey_fg2, bg = colors.statusline_bg },
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
components.right.active[2] = {
|
|
|
|
|
provider = "git_branch",
|
|
|
|
|
hl = {
|
|
|
|
|
fg = colors.grey_fg2,
|
|
|
|
|
bg = colors.statusline_bg,
|
2021-08-16 07:49:09 +00:00
|
|
|
|
},
|
2021-08-26 05:18:13 +00:00
|
|
|
|
icon = " ",
|
2021-07-15 15:43:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.right.active[3] = {
|
|
|
|
|
provider = " " .. statusline_style.left,
|
|
|
|
|
hl = {
|
|
|
|
|
fg = colors.one_bg2,
|
|
|
|
|
bg = colors.statusline_bg,
|
2021-08-16 07:49:09 +00:00
|
|
|
|
},
|
2021-07-15 15:43:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-14 17:05:10 +00:00
|
|
|
|
local mode_colors = {
|
2021-08-26 05:18:13 +00:00
|
|
|
|
["n"] = { "NORMAL", colors.red },
|
|
|
|
|
["no"] = { "N-PENDING", colors.red },
|
|
|
|
|
["i"] = { "INSERT", colors.dark_purple },
|
|
|
|
|
["ic"] = { "INSERT", colors.dark_purple },
|
|
|
|
|
["t"] = { "TERMINAL", colors.green },
|
|
|
|
|
["v"] = { "VISUAL", colors.cyan },
|
|
|
|
|
["V"] = { "V-LINE", colors.cyan },
|
|
|
|
|
[""] = { "V-BLOCK", colors.cyan },
|
|
|
|
|
["R"] = { "REPLACE", colors.orange },
|
|
|
|
|
["Rv"] = { "V-REPLACE", colors.orange },
|
|
|
|
|
["s"] = { "SELECT", colors.nord_blue },
|
|
|
|
|
["S"] = { "S-LINE", colors.nord_blue },
|
|
|
|
|
[""] = { "S-BLOCK", colors.nord_blue },
|
|
|
|
|
["c"] = { "COMMAND", colors.pink },
|
|
|
|
|
["cv"] = { "COMMAND", colors.pink },
|
|
|
|
|
["ce"] = { "COMMAND", colors.pink },
|
|
|
|
|
["r"] = { "PROMPT", colors.teal },
|
|
|
|
|
["rm"] = { "MORE", colors.teal },
|
|
|
|
|
["r?"] = { "CONFIRM", colors.teal },
|
|
|
|
|
["!"] = { "SHELL", colors.green },
|
2021-08-14 17:05:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
local chad_mode_hl = function()
|
|
|
|
|
return {
|
|
|
|
|
fg = mode_colors[vim.fn.mode()][2],
|
|
|
|
|
bg = colors.one_bg,
|
|
|
|
|
}
|
2021-08-13 06:42:43 +00:00
|
|
|
|
end
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.right.active[4] = {
|
|
|
|
|
provider = statusline_style.left,
|
|
|
|
|
hl = function()
|
|
|
|
|
return {
|
|
|
|
|
fg = mode_colors[vim.fn.mode()][2],
|
|
|
|
|
bg = colors.one_bg2,
|
|
|
|
|
}
|
|
|
|
|
end,
|
2021-08-19 12:05:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.right.active[5] = {
|
|
|
|
|
provider = statusline_style.vi_mode_icon,
|
|
|
|
|
hl = function()
|
|
|
|
|
return {
|
|
|
|
|
fg = colors.statusline_bg,
|
|
|
|
|
bg = mode_colors[vim.fn.mode()][2],
|
|
|
|
|
}
|
|
|
|
|
end,
|
2021-08-13 06:42:43 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.right.active[6] = {
|
|
|
|
|
provider = function()
|
|
|
|
|
return " " .. mode_colors[vim.fn.mode()][1] .. " "
|
|
|
|
|
end,
|
|
|
|
|
hl = chad_mode_hl,
|
2021-07-15 15:43:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.right.active[7] = {
|
|
|
|
|
provider = statusline_style.left,
|
|
|
|
|
hl = {
|
|
|
|
|
fg = colors.grey,
|
|
|
|
|
bg = colors.one_bg,
|
2021-08-16 07:49:09 +00:00
|
|
|
|
},
|
2021-07-15 15:43:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.right.active[8] = {
|
|
|
|
|
provider = statusline_style.left,
|
|
|
|
|
hl = {
|
|
|
|
|
fg = colors.green,
|
|
|
|
|
bg = colors.grey,
|
2021-08-19 12:05:24 +00:00
|
|
|
|
},
|
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.right.active[9] = {
|
|
|
|
|
provider = statusline_style.position_icon,
|
|
|
|
|
hl = {
|
|
|
|
|
fg = colors.black,
|
|
|
|
|
bg = colors.green,
|
2021-08-16 07:49:09 +00:00
|
|
|
|
},
|
2021-07-15 15:43:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-26 05:18:13 +00:00
|
|
|
|
components.right.active[10] = {
|
|
|
|
|
provider = function()
|
|
|
|
|
local current_line = vim.fn.line "."
|
|
|
|
|
local total_line = vim.fn.line "$"
|
|
|
|
|
|
|
|
|
|
if current_line == 1 then
|
|
|
|
|
return " Top "
|
|
|
|
|
elseif current_line == vim.fn.line "$" then
|
|
|
|
|
return " Bot "
|
|
|
|
|
end
|
|
|
|
|
local result, _ = math.modf((current_line / total_line) * 100)
|
|
|
|
|
return " " .. result .. " % "
|
|
|
|
|
end,
|
|
|
|
|
|
|
|
|
|
hl = {
|
|
|
|
|
fg = colors.green,
|
|
|
|
|
bg = colors.one_bg,
|
2021-08-16 07:49:09 +00:00
|
|
|
|
},
|
2021-07-15 15:43:17 +00:00
|
|
|
|
}
|
2021-08-26 05:18:13 +00:00
|
|
|
|
|
|
|
|
|
require("feline").setup {
|
|
|
|
|
default_bg = colors.statusline_bg,
|
|
|
|
|
default_fg = colors.fg,
|
|
|
|
|
components = components,
|
|
|
|
|
}
|