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

392 lines
8.7 KiB
Lua
Raw Normal View History

Restructure config | Move some to a packer plugin | Lot of cleanup * move teleacope files, updater and related utils to https://github.com/NvChad/core * restructure config file and directory structure * expose mappings for better escape * allow multiple mappings for some * improve merge table function for the same * move autocommands to a seperate file * rearrange everything alphabetically where sanely possible * rearrange packer plugin list on the basis of trigerred state config structure now . ├── init.lua ├── LICENSE ├── lua │ ├── chadrc.lua │ ├── colors │ │ ├── highlights.lua │ │ ├── init.lua │ │ └── themes │ │ ├── chadracula.lua │ │ ├── everforest.lua │ │ ├── gruvchad.lua │ │ ├── javacafe.lua │ │ ├── mountain.lua │ │ ├── norchad.lua │ │ ├── one-light.lua │ │ ├── onedark.lua │ │ ├── tokyonight.lua │ │ └── tomorrow-night.lua │ ├── core │ │ ├── autocmds.lua │ │ ├── init.lua │ │ ├── mappings.lua │ │ ├── options.lua │ │ └── utils.lua │ ├── default_config.lua │ └── plugins │ ├── configs │ │ ├── autopairs.lua │ │ ├── autosave.lua │ │ ├── bufferline.lua │ │ ├── chadsheet.lua │ │ ├── compe.lua │ │ ├── dashboard.lua │ │ ├── gitsigns.lua │ │ ├── icons.lua │ │ ├── lspconfig.lua │ │ ├── luasnip.lua │ │ ├── nvimtree.lua │ │ ├── others.lua │ │ ├── statusline.lua │ │ ├── telescope.lua │ │ ├── treesitter.lua │ │ └── zenmode.lua │ ├── init.lua │ └── packerInit.lua └── README.md
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"
local icon_styles = {
default = {
left = "",
right = "",
main_icon = "",
vi_mode_icon = "",
position_icon = "",
},
Restructure config | Move some to a packer plugin | Lot of cleanup * move teleacope files, updater and related utils to https://github.com/NvChad/core * restructure config file and directory structure * expose mappings for better escape * allow multiple mappings for some * improve merge table function for the same * move autocommands to a seperate file * rearrange everything alphabetically where sanely possible * rearrange packer plugin list on the basis of trigerred state config structure now . ├── init.lua ├── LICENSE ├── lua │ ├── chadrc.lua │ ├── colors │ │ ├── highlights.lua │ │ ├── init.lua │ │ └── themes │ │ ├── chadracula.lua │ │ ├── everforest.lua │ │ ├── gruvchad.lua │ │ ├── javacafe.lua │ │ ├── mountain.lua │ │ ├── norchad.lua │ │ ├── one-light.lua │ │ ├── onedark.lua │ │ ├── tokyonight.lua │ │ └── tomorrow-night.lua │ ├── core │ │ ├── autocmds.lua │ │ ├── init.lua │ │ ├── mappings.lua │ │ ├── options.lua │ │ └── utils.lua │ ├── default_config.lua │ └── plugins │ ├── configs │ │ ├── autopairs.lua │ │ ├── autosave.lua │ │ ├── bufferline.lua │ │ ├── chadsheet.lua │ │ ├── compe.lua │ │ ├── dashboard.lua │ │ ├── gitsigns.lua │ │ ├── icons.lua │ │ ├── lspconfig.lua │ │ ├── luasnip.lua │ │ ├── nvimtree.lua │ │ ├── others.lua │ │ ├── statusline.lua │ │ ├── telescope.lua │ │ ├── treesitter.lua │ │ └── zenmode.lua │ ├── init.lua │ └── packerInit.lua └── README.md
2021-08-22 07:49:15 +00:00
arrow = {
left = "",
right = "",
main_icon = "",
vi_mode_icon = "",
position_icon = "",
},
block = {
left = " ",
right = " ",
main_icon = "",
2021-08-27 08:18:04 +00:00
vi_mode_icon = "",
position_icon = "",
},
2021-08-19 12:05:24 +00:00
Restructure config | Move some to a packer plugin | Lot of cleanup * move teleacope files, updater and related utils to https://github.com/NvChad/core * restructure config file and directory structure * expose mappings for better escape * allow multiple mappings for some * improve merge table function for the same * move autocommands to a seperate file * rearrange everything alphabetically where sanely possible * rearrange packer plugin list on the basis of trigerred state config structure now . ├── init.lua ├── LICENSE ├── lua │ ├── chadrc.lua │ ├── colors │ │ ├── highlights.lua │ │ ├── init.lua │ │ └── themes │ │ ├── chadracula.lua │ │ ├── everforest.lua │ │ ├── gruvchad.lua │ │ ├── javacafe.lua │ │ ├── mountain.lua │ │ ├── norchad.lua │ │ ├── one-light.lua │ │ ├── onedark.lua │ │ ├── tokyonight.lua │ │ └── tomorrow-night.lua │ ├── core │ │ ├── autocmds.lua │ │ ├── init.lua │ │ ├── mappings.lua │ │ ├── options.lua │ │ └── utils.lua │ ├── default_config.lua │ └── plugins │ ├── configs │ │ ├── autopairs.lua │ │ ├── autosave.lua │ │ ├── bufferline.lua │ │ ├── chadsheet.lua │ │ ├── compe.lua │ │ ├── dashboard.lua │ │ ├── gitsigns.lua │ │ ├── icons.lua │ │ ├── lspconfig.lua │ │ ├── luasnip.lua │ │ ├── nvimtree.lua │ │ ├── others.lua │ │ ├── statusline.lua │ │ ├── telescope.lua │ │ ├── treesitter.lua │ │ └── zenmode.lua │ ├── init.lua │ └── packerInit.lua └── README.md
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 = "",
},
}
local config = require("core.utils").load_config().plugins.options.statusline
-- statusline style
local user_statusline_style = config.style
local statusline_style = icon_styles[user_statusline_style]
-- if show short statusline on small screens
local shortline = config.shortline == false and true
2021-08-26 05:18:13 +00:00
-- Initialize the components table
local components = {
2021-09-07 10:00:34 +00:00
active = {},
inactive = {},
}
2021-09-07 09:45:46 +00:00
-- Initialize left, mid and right
table.insert(components.active, {})
table.insert(components.active, {})
table.insert(components.active, {})
components.active[1][1] = {
2021-08-26 05:18:13 +00:00
provider = statusline_style.main_icon,
hl = {
fg = colors.statusline_bg,
bg = colors.nord_blue,
},
2021-08-26 05:18:13 +00:00
right_sep = { str = statusline_style.right, hl = {
fg = colors.nord_blue,
2021-09-14 04:01:48 +00:00
bg = colors.lightbg,
2021-08-26 05:18:13 +00:00
} },
}
2021-09-07 09:45:46 +00:00
components.active[1][2] = {
2021-08-26 05:18:13 +00:00
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
2021-09-14 04:01:48 +00:00
icon = ""
2021-08-26 05:18:13 +00:00
return icon
end
2021-09-14 04:01:48 +00:00
return " " .. icon .. " " .. filename .. " "
2021-08-26 05:18:13 +00:00
end,
enabled = shortline or function(winid)
return vim.api.nvim_win_get_width(winid) > 70
end,
2021-08-26 05:18:13 +00:00
hl = {
fg = colors.white,
bg = colors.lightbg,
},
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-09-14 04:01:48 +00:00
components.active[1][3] = {
2021-08-26 05:18:13 +00:00
provider = function()
local dir_name = vim.fn.fnamemodify(vim.fn.getcwd(), ":t")
2021-08-28 01:18:51 +00:00
return "" .. dir_name .. " "
2021-08-26 05:18:13 +00:00
end,
2021-08-19 12:43:58 +00:00
enabled = shortline or function(winid)
return vim.api.nvim_win_get_width(winid) > 80
end,
2021-08-26 05:18:13 +00:00
hl = {
fg = colors.grey_fg2,
bg = colors.lightbg2,
},
2021-09-17 13:06:32 +00:00
right_sep = {
str = statusline_style.right,
hi = {
fg = colors.lightbg2,
bg = colors.statusline_bg,
},
},
}
2021-09-14 04:01:48 +00:00
components.active[1][4] = {
2021-08-26 05:18:13 +00:00
provider = "git_diff_added",
hl = {
fg = colors.grey_fg2,
bg = colors.statusline_bg,
},
2021-08-26 05:18:13 +00:00
icon = "",
}
2021-08-26 05:18:13 +00:00
-- diffModfified
2021-09-14 04:01:48 +00:00
components.active[1][5] = {
2021-08-26 05:18:13 +00:00
provider = "git_diff_changed",
hl = {
fg = colors.grey_fg2,
bg = colors.statusline_bg,
},
2021-08-26 05:18:13 +00:00
icon = "",
}
2021-08-26 05:18:13 +00:00
-- diffRemove
2021-09-14 04:01:48 +00:00
components.active[1][6] = {
2021-08-26 05:18:13 +00:00
provider = "git_diff_removed",
hl = {
fg = colors.grey_fg2,
bg = colors.statusline_bg,
},
2021-08-26 05:18:13 +00:00
icon = "",
}
2021-09-14 04:01:48 +00:00
components.active[1][7] = {
2021-08-26 05:18:13 +00:00
provider = "diagnostic_errors",
enabled = function()
return lsp.diagnostics_exist "Error"
end,
2021-08-26 05:18:13 +00:00
hl = { fg = colors.red },
icon = "",
}
2021-09-14 04:01:48 +00:00
components.active[1][8] = {
2021-08-26 05:18:13 +00:00
provider = "diagnostic_warnings",
enabled = function()
return lsp.diagnostics_exist "Warning"
end,
hl = { fg = colors.yellow },
icon = "",
}
2021-09-14 04:01:48 +00:00
components.active[1][9] = {
2021-08-26 05:18:13 +00:00
provider = "diagnostic_hints",
enabled = function()
return lsp.diagnostics_exist "Hint"
end,
hl = { fg = colors.grey_fg2 },
icon = "",
}
2021-09-14 04:01:48 +00:00
components.active[1][10] = {
2021-08-26 05:18:13 +00:00
provider = "diagnostic_info",
enabled = function()
return lsp.diagnostics_exist "Information"
end,
hl = { fg = colors.green },
icon = "",
}
2021-09-07 09:45:46 +00:00
components.active[2][1] = {
2021-08-26 07:52:48 +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 = {
"",
"",
"",
2021-08-26 07:52:48 +00:00
}
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)
else
return string.format(" %%<%s %s %s (%s%%%%) ", spinners[frame + 1], title, msg, percentage)
end
2021-08-26 07:52:48 +00:00
end
return ""
end,
enabled = shortline or function(winid)
return vim.api.nvim_win_get_width(winid) > 80
end,
2021-08-26 07:52:48 +00:00
hl = { fg = colors.green },
}
2021-09-07 09:45:46 +00:00
components.active[3][1] = {
2021-08-26 05:18:13 +00:00
provider = function()
2021-08-26 05:29:37 +00:00
if next(vim.lsp.buf_get_clients()) ~= nil then
2021-08-27 08:18:04 +00:00
return " LSP"
2021-08-26 05:29:37 +00:00
else
return ""
2021-08-26 05:18:13 +00:00
end
end,
enabled = shortline or function(winid)
return vim.api.nvim_win_get_width(winid) > 70
end,
2021-08-26 05:18:13 +00:00
hl = { fg = colors.grey_fg2, bg = colors.statusline_bg },
}
2021-09-07 09:45:46 +00:00
components.active[3][2] = {
provider = "git_branch",
enabled = shortline or function(winid)
return vim.api.nvim_win_get_width(winid) > 70
end,
2021-08-26 05:18:13 +00:00
hl = {
fg = colors.grey_fg2,
bg = colors.statusline_bg,
},
2021-09-09 03:14:30 +00:00
icon = "",
}
2021-09-07 09:45:46 +00:00
components.active[3][3] = {
2021-08-26 05:18:13 +00:00
provider = " " .. statusline_style.left,
hl = {
fg = colors.one_bg2,
bg = colors.statusline_bg,
},
}
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-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-09-07 09:45:46 +00:00
components.active[3][4] = {
2021-08-26 05:18:13 +00:00
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-09-07 09:45:46 +00:00
components.active[3][5] = {
2021-08-26 05:18:13 +00:00
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-09-07 09:45:46 +00:00
components.active[3][6] = {
2021-08-26 05:18:13 +00:00
provider = function()
return " " .. mode_colors[vim.fn.mode()][1] .. " "
end,
hl = chad_mode_hl,
}
2021-09-07 09:45:46 +00:00
components.active[3][7] = {
2021-08-26 05:18:13 +00:00
provider = statusline_style.left,
enabled = shortline or function(winid)
return vim.api.nvim_win_get_width(winid) > 90
end,
2021-08-26 05:18:13 +00:00
hl = {
fg = colors.grey,
bg = colors.one_bg,
},
}
2021-09-07 09:45:46 +00:00
components.active[3][8] = {
2021-08-26 05:18:13 +00:00
provider = statusline_style.left,
enabled = shortline or function(winid)
return vim.api.nvim_win_get_width(winid) > 90
end,
2021-08-26 05:18:13 +00:00
hl = {
fg = colors.green,
bg = colors.grey,
2021-08-19 12:05:24 +00:00
},
}
2021-09-07 09:45:46 +00:00
components.active[3][9] = {
2021-08-26 05:18:13 +00:00
provider = statusline_style.position_icon,
enabled = shortline or function(winid)
return vim.api.nvim_win_get_width(winid) > 90
end,
2021-08-26 05:18:13 +00:00
hl = {
fg = colors.black,
bg = colors.green,
},
}
2021-09-07 09:45:46 +00:00
components.active[3][10] = {
2021-08-26 05:18:13 +00:00
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)
2021-08-28 04:09:38 +00:00
return " " .. result .. "%% "
2021-08-26 05:18:13 +00:00
end,
enabled = shortline or function(winid)
return vim.api.nvim_win_get_width(winid) > 90
end,
2021-08-26 05:18:13 +00:00
hl = {
fg = colors.green,
bg = colors.one_bg,
},
}
2021-08-26 05:18:13 +00:00
local InactiveStatusHL = {
fg = colors.one_bg2,
bg = "NONE",
style = "underline",
}
components.inactive = {
{
{
provider = " ",
hl = InactiveStatusHL,
},
},
}
2021-08-26 05:18:13 +00:00
require("feline").setup {
2021-09-11 05:37:04 +00:00
colors = {
bg = colors.statusline_bg,
fg = colors.fg,
},
2021-08-26 05:18:13 +00:00
components = components,
}