neovim-config/lua/plugins/configs/statusline.lua

331 lines
8.1 KiB
Lua
Raw Normal View History

local present, feline = pcall(require, "feline")
if not present then
return
end
2022-05-07 09:24:35 +00:00
local options = {
colors = require("base46").get_colors "base_30",
lsp = require "feline.providers.lsp",
lsp_severity = vim.diagnostic.severity,
}
2022-05-07 09:24:35 +00:00
options.icon_styles = {
2022-01-11 06:12:02 +00:00
default = {
left = "",
right = "",
2022-05-09 18:47:28 +00:00
main_icon = " ",
vi_mode_icon = "",
2022-01-11 06:12:02 +00:00
position_icon = "",
},
arrow = {
left = "",
right = "",
2022-05-09 18:47:28 +00:00
main_icon = " ",
vi_mode_icon = "",
2022-01-11 06:12:02 +00:00
position_icon = "",
},
block = {
left = " ",
right = " ",
2022-05-09 18:47:28 +00:00
main_icon = " ",
vi_mode_icon = "",
2022-01-11 06:12:02 +00:00
position_icon = "",
},
round = {
left = "",
right = "",
2022-05-09 18:47:28 +00:00
main_icon = " ",
vi_mode_icon = "",
2022-01-11 06:12:02 +00:00
position_icon = "",
},
slant = {
left = "",
right = "",
2022-05-09 18:47:28 +00:00
main_icon = " ",
vi_mode_icon = "",
2022-01-11 06:12:02 +00:00
position_icon = "",
},
}
2022-05-09 18:47:28 +00:00
options.mode_colors = {
["n"] = { "NORMAL", options.colors.red },
["no"] = { "N-PENDING", options.colors.red },
["i"] = { "INSERT", options.colors.dark_purple },
["ic"] = { "INSERT", options.colors.dark_purple },
["t"] = { "TERMINAL", options.colors.green },
["v"] = { "VISUAL", options.colors.cyan },
["V"] = { "V-LINE", options.colors.cyan },
[""] = { "V-BLOCK", options.colors.cyan },
["R"] = { "REPLACE", options.colors.orange },
["Rv"] = { "V-REPLACE", options.colors.orange },
["s"] = { "SELECT", options.colors.nord_blue },
["S"] = { "S-LINE", options.colors.nord_blue },
[""] = { "S-BLOCK", options.colors.nord_blue },
["c"] = { "COMMAND", options.colors.pink },
["cv"] = { "COMMAND", options.colors.pink },
["ce"] = { "COMMAND", options.colors.pink },
["r"] = { "PROMPT", options.colors.teal },
["rm"] = { "MORE", options.colors.teal },
["r?"] = { "CONFIRM", options.colors.teal },
["!"] = { "SHELL", options.colors.green },
}
options.separator_style =
options.icon_styles[require("core.utils").load_config().plugins.options.statusline.separator_style]
2022-05-07 09:24:35 +00:00
options.main_icon = {
2022-05-09 18:47:28 +00:00
provider = function()
return "" .. options.mode_colors[vim.fn.mode()][1] .. " "
end,
2022-01-11 06:12:02 +00:00
hl = {
2022-05-07 09:24:35 +00:00
fg = options.colors.statusline_bg,
bg = options.colors.nord_blue,
2022-01-11 06:12:02 +00:00
},
right_sep = {
2022-05-07 09:24:35 +00:00
str = options.separator_style.right,
hl = {
2022-05-07 09:24:35 +00:00
fg = options.colors.nord_blue,
bg = options.colors.lightbg,
},
},
2022-01-11 06:12:02 +00:00
}
2022-05-09 18:47:28 +00:00
options.dir_name = {
2022-01-11 06:12:02 +00:00
provider = function()
2022-05-09 18:47:28 +00:00
local dir_name = vim.fn.fnamemodify(vim.fn.getcwd(), ":t")
2022-01-11 06:12:02 +00:00
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 = ""
end
2022-05-09 18:47:28 +00:00
return " " .. icon .. " " .. dir_name .. " "
2022-01-11 06:12:02 +00:00
end,
2022-05-09 18:47:28 +00:00
2022-01-11 06:12:02 +00:00
hl = {
2022-05-07 09:24:35 +00:00
fg = options.colors.white,
bg = options.colors.lightbg,
2022-01-11 06:12:02 +00:00
},
right_sep = {
2022-05-07 09:24:35 +00:00
str = options.separator_style.right,
hl = { fg = options.colors.lightbg, bg = options.colors.lightbg2 },
},
2022-01-11 06:12:02 +00:00
}
2022-05-07 09:24:35 +00:00
options.diff = {
2022-01-11 06:12:02 +00:00
add = {
provider = "git_diff_added",
hl = {
2022-05-07 09:24:35 +00:00
fg = options.colors.grey_fg2,
bg = options.colors.statusline_bg,
2022-01-11 06:12:02 +00:00
},
2022-05-09 18:47:28 +00:00
icon = "",
2022-01-11 06:12:02 +00:00
},
change = {
provider = "git_diff_changed",
hl = {
2022-05-07 09:24:35 +00:00
fg = options.colors.grey_fg2,
bg = options.colors.statusline_bg,
2022-01-11 06:12:02 +00:00
},
icon = "",
2022-01-11 06:12:02 +00:00
},
remove = {
provider = "git_diff_removed",
hl = {
2022-05-07 09:24:35 +00:00
fg = options.colors.grey_fg2,
bg = options.colors.statusline_bg,
2022-01-11 06:12:02 +00:00
},
icon = "",
},
}
2022-05-07 09:24:35 +00:00
options.git_branch = {
2022-01-11 06:12:02 +00:00
provider = "git_branch",
hl = {
2022-05-07 09:24:35 +00:00
fg = options.colors.grey_fg2,
bg = options.colors.statusline_bg,
2022-01-11 06:12:02 +00:00
},
icon = "",
}
2022-05-07 09:24:35 +00:00
options.diagnostic = {
error = {
2022-01-11 06:12:02 +00:00
provider = "diagnostic_errors",
enabled = function()
2022-05-07 09:24:35 +00:00
return options.lsp.diagnostics_exist(options.lsp_severity.ERROR)
2022-01-11 06:12:02 +00:00
end,
2022-05-07 09:24:35 +00:00
hl = { fg = options.colors.red },
2022-01-11 06:12:02 +00:00
icon = "",
},
warning = {
provider = "diagnostic_warnings",
enabled = function()
2022-05-07 09:24:35 +00:00
return options.lsp.diagnostics_exist(options.lsp_severity.WARN)
2022-01-11 06:12:02 +00:00
end,
2022-05-07 09:24:35 +00:00
hl = { fg = options.colors.yellow },
2022-01-11 06:12:02 +00:00
icon = "",
},
hint = {
provider = "diagnostic_hints",
enabled = function()
2022-05-07 09:24:35 +00:00
return options.lsp.diagnostics_exist(options.lsp_severity.HINT)
2022-01-11 06:12:02 +00:00
end,
2022-05-07 09:24:35 +00:00
hl = { fg = options.colors.grey_fg2 },
2022-01-11 06:12:02 +00:00
icon = "",
},
info = {
provider = "diagnostic_info",
enabled = function()
2022-05-07 09:24:35 +00:00
return options.lsp.diagnostics_exist(options.lsp_severity.INFO)
2022-01-11 06:12:02 +00:00
end,
2022-05-07 09:24:35 +00:00
hl = { fg = options.colors.green },
2022-01-11 06:12:02 +00:00
icon = "",
},
}
2022-05-07 09:24:35 +00:00
options.lsp_progress = {
2022-01-11 06:12:02 +00:00
provider = function()
local Lsp = vim.lsp.util.get_progress_messages()[1]
if Lsp then
local msg = Lsp.message or ""
local percentage = Lsp.percentage or 0
local title = Lsp.title or ""
local spinners = {
"",
"",
"",
}
local success_icon = {
"",
"",
"",
}
local ms = vim.loop.hrtime() / 1000000
local frame = math.floor(ms / 120) % #spinners
if percentage >= 70 then
return string.format(" %%<%s %s %s (%s%%%%) ", success_icon[frame + 1], title, msg, percentage)
end
return string.format(" %%<%s %s %s (%s%%%%) ", spinners[frame + 1], title, msg, percentage)
end
return ""
end,
2022-05-07 09:24:35 +00:00
hl = { fg = options.colors.green },
2022-01-11 06:12:02 +00:00
}
2022-05-07 09:24:35 +00:00
options.lsp_icon = {
2022-01-11 06:12:02 +00:00
provider = function()
if next(vim.lsp.buf_get_clients()) ~= nil then
2022-05-09 18:47:28 +00:00
return "  LSP "
2022-01-11 06:12:02 +00:00
else
2022-05-09 18:47:28 +00:00
return " "
2022-01-11 06:12:02 +00:00
end
end,
2022-05-07 09:24:35 +00:00
hl = { fg = options.colors.grey_fg2, bg = options.colors.statusline_bg },
2022-01-11 06:12:02 +00:00
}
2022-05-07 09:24:35 +00:00
options.current_line = {
2022-01-11 06:12:02 +00:00
provider = function()
local current_line = vim.fn.line "."
2022-05-09 18:47:28 +00:00
local current_col = vim.fn.col "."
2022-01-11 06:12:02 +00:00
local total_line = vim.fn.line "$"
2022-05-09 18:47:28 +00:00
if current_col < 10 then
current_col = " " .. current_col
end
2022-01-11 06:12:02 +00:00
if current_line == 1 then
2022-05-09 18:47:28 +00:00
return "" .. current_line .. ":" .. current_col .. "/" .. "Top "
2022-01-11 06:12:02 +00:00
elseif current_line == vim.fn.line "$" then
2022-05-09 18:47:28 +00:00
return "" .. current_line .. ":" .. current_col .. "/" .. "Bot "
2022-01-11 06:12:02 +00:00
end
local result, _ = math.modf((current_line / total_line) * 100)
2022-05-09 18:47:28 +00:00
if result < 10 then
result = " " .. result
end
return "" .. current_line .. ":" .. current_col .. "/" .. result .. "%% "
2022-01-11 06:12:02 +00:00
end,
hl = {
2022-05-09 18:47:28 +00:00
fg = options.colors.statusline_bg,
bg = options.colors.green,
},
left_sep = {
str = options.separator_style.left,
hl = {
fg = options.colors.green,
bg = options.colors.statusline_bg,
},
2022-01-11 06:12:02 +00:00
},
}
2022-05-07 09:24:35 +00:00
options = require("core.utils").load_override(options, "feline-nvim/feline.nvim")
local function add_table(tbl, inject)
if inject then
table.insert(tbl, inject)
end
2022-01-11 06:12:02 +00:00
end
-- components are divided in 3 sections
2022-05-07 09:24:35 +00:00
options.left = {}
options.middle = {}
options.right = {}
-- left
2022-05-07 09:24:35 +00:00
add_table(options.left, options.main_icon)
add_table(options.left, options.dir_name)
2022-05-09 18:47:28 +00:00
add_table(options.left, options.git_branch)
2022-05-07 09:24:35 +00:00
add_table(options.left, options.diff.add)
add_table(options.left, options.diff.change)
add_table(options.left, options.diff.remove)
add_table(options.middle, options.lsp_progress)
-- right
2022-05-09 18:47:28 +00:00
add_table(options.right, options.diagnostic.error)
add_table(options.right, options.diagnostic.warning)
add_table(options.right, options.diagnostic.hint)
add_table(options.right, options.diagnostic.info)
2022-05-07 09:24:35 +00:00
add_table(options.right, options.lsp_icon)
add_table(options.right, options.position_icon)
add_table(options.right, options.current_line)
-- Initialize the components table
options.components = { active = {} }
options.components.active[1] = options.left
options.components.active[2] = options.middle
options.components.active[3] = options.right
options.theme = {
bg = options.colors.statusline_bg,
fg = options.colors.fg,
}
feline.setup {
2022-05-07 09:24:35 +00:00
theme = options.theme,
components = options.components,
}