2021-02-13 00:03:57 +00:00
|
|
|
-- Copyright (c) 2020-2021 hoob3rt
|
|
|
|
-- MIT license, see LICENSE for more details.
|
2020-12-30 14:48:51 +00:00
|
|
|
local highlight = require('lualine.highlight')
|
2021-05-09 21:11:18 +00:00
|
|
|
local loader = require('lualine.utils.loader')
|
|
|
|
local utils_section = require('lualine.utils.section')
|
|
|
|
local config_module = require('lualine.config')
|
2021-03-10 23:07:38 +00:00
|
|
|
|
2021-05-09 21:11:18 +00:00
|
|
|
local config = config_module.config
|
2020-12-30 14:48:51 +00:00
|
|
|
|
2021-03-13 00:21:37 +00:00
|
|
|
local function statusline(sections, is_focused)
|
2021-02-20 03:21:05 +00:00
|
|
|
local function create_status_builder()
|
|
|
|
-- The sequence sections should maintain
|
|
|
|
local section_sequence = {'a', 'b', 'c', 'x', 'y', 'z'}
|
|
|
|
local status_builder = {}
|
|
|
|
for _, section_name in ipairs(section_sequence) do
|
2021-03-15 23:37:46 +00:00
|
|
|
if sections['lualine_' .. section_name] then
|
2021-02-20 03:21:05 +00:00
|
|
|
-- insert highlight+components of this section to status_builder
|
|
|
|
local section_highlight = highlight.format_highlight(is_focused,
|
2021-03-15 23:37:46 +00:00
|
|
|
'lualine_' ..
|
|
|
|
section_name)
|
2021-03-18 00:57:59 +00:00
|
|
|
local section_data = utils_section.draw_section(
|
2021-03-15 23:37:46 +00:00
|
|
|
sections['lualine_' .. section_name],
|
|
|
|
section_highlight)
|
2021-02-20 03:21:05 +00:00
|
|
|
if #section_data > 0 then
|
2021-03-15 23:37:46 +00:00
|
|
|
table.insert(status_builder,
|
|
|
|
{name = section_name, data = section_data})
|
2021-02-20 03:21:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return status_builder
|
2020-12-30 14:48:51 +00:00
|
|
|
end
|
2021-02-20 03:21:05 +00:00
|
|
|
-- status_builder stores statusline without section_separators
|
|
|
|
local status_builder = create_status_builder()
|
|
|
|
|
|
|
|
-- Actual statusline
|
|
|
|
local status = {}
|
|
|
|
local half_passed = false
|
2021-03-15 23:37:46 +00:00
|
|
|
for i = 1, #status_builder do
|
2021-02-20 03:21:05 +00:00
|
|
|
-- midsection divider
|
|
|
|
if not half_passed and status_builder[i].name > 'c' then
|
2021-03-15 23:37:46 +00:00
|
|
|
table.insert(status,
|
|
|
|
highlight.format_highlight(is_focused, 'lualine_c') .. '%=')
|
2021-02-20 03:21:05 +00:00
|
|
|
half_passed = true
|
|
|
|
end
|
|
|
|
-- provide section_separators when statusline is in focus
|
|
|
|
if is_focused then
|
|
|
|
-- component separator needs to have fg = current_section.bg
|
|
|
|
-- and bg = adjacent_section.bg
|
2021-03-15 23:37:46 +00:00
|
|
|
local previous_section = status_builder[i - 1] or {}
|
2021-02-20 03:21:05 +00:00
|
|
|
local current_section = status_builder[i]
|
2021-03-15 23:37:46 +00:00
|
|
|
local next_section = status_builder[i + 1] or {}
|
2021-02-20 03:21:05 +00:00
|
|
|
-- For 2nd half we need to show separator before section
|
2021-05-02 17:16:03 +00:00
|
|
|
if current_section.name > 'x' and config.options.section_separators[2] ~=
|
|
|
|
'' then
|
2021-03-15 23:37:46 +00:00
|
|
|
local transitional_highlight = highlight.get_transitional_highlights(
|
|
|
|
previous_section.data,
|
|
|
|
current_section.data, true)
|
2021-03-17 00:02:13 +00:00
|
|
|
if transitional_highlight and config.options.section_separators and
|
|
|
|
config.options.section_separators[2] then
|
2021-03-15 23:37:46 +00:00
|
|
|
table.insert(status, transitional_highlight ..
|
2021-03-17 00:02:13 +00:00
|
|
|
config.options.section_separators[2])
|
2021-02-20 03:21:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
-- **( insert the actual section in the middle )** --
|
|
|
|
table.insert(status, status_builder[i].data)
|
|
|
|
|
|
|
|
-- For 1st half we need to show separator after section
|
2021-05-02 17:16:03 +00:00
|
|
|
if current_section.name < 'c' and config.options.section_separators[1] ~=
|
|
|
|
'' then
|
2021-03-15 23:37:46 +00:00
|
|
|
local transitional_highlight = highlight.get_transitional_highlights(
|
|
|
|
current_section.data,
|
|
|
|
next_section.data)
|
2021-03-17 00:02:13 +00:00
|
|
|
if transitional_highlight and config.options.section_separators and
|
|
|
|
config.options.section_separators[1] then
|
2021-03-15 23:37:46 +00:00
|
|
|
table.insert(status, transitional_highlight ..
|
2021-03-17 00:02:13 +00:00
|
|
|
config.options.section_separators[1])
|
2021-02-20 03:21:05 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
else -- when not in focus
|
|
|
|
table.insert(status, status_builder[i].data)
|
|
|
|
end
|
2020-12-30 14:48:51 +00:00
|
|
|
end
|
2021-02-20 03:21:05 +00:00
|
|
|
-- incase none of x,y,z was configured lets not fill whole statusline with a,b,c section
|
|
|
|
if not half_passed then
|
2021-03-15 23:37:46 +00:00
|
|
|
table.insert(status,
|
|
|
|
highlight.format_highlight(is_focused, 'lualine_c') .. '%=')
|
2020-12-30 14:48:51 +00:00
|
|
|
end
|
2021-01-03 19:11:22 +00:00
|
|
|
return table.concat(status)
|
2020-12-30 14:48:51 +00:00
|
|
|
end
|
|
|
|
|
2021-03-13 00:21:37 +00:00
|
|
|
-- check if any extension matches the filetype and return proper sections
|
|
|
|
local function get_extension_sections()
|
|
|
|
local sections, inactive_sections = nil, nil
|
2021-03-17 00:02:13 +00:00
|
|
|
for _, extension in ipairs(config.extensions) do
|
2021-03-13 00:21:37 +00:00
|
|
|
for _, filetype in ipairs(extension.filetypes) do
|
|
|
|
if vim.bo.filetype == filetype then
|
|
|
|
sections = extension.sections
|
|
|
|
inactive_sections = extension.inactive_sections
|
|
|
|
break
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
return {sections = sections, inactive_sections = inactive_sections}
|
|
|
|
end
|
|
|
|
|
2021-02-05 12:29:34 +00:00
|
|
|
local function status_dispatch()
|
2021-05-02 17:16:03 +00:00
|
|
|
-- disable on specific filetypes
|
|
|
|
local current_ft = vim.api.nvim_buf_get_option(
|
|
|
|
vim.fn.winbufnr(vim.g.statusline_winid), 'filetype')
|
|
|
|
for _, ft in pairs(config.options.disabled_filetypes) do
|
|
|
|
if ft == current_ft then
|
|
|
|
vim.wo.statusline = ''
|
|
|
|
return ''
|
|
|
|
end
|
|
|
|
end
|
2021-03-13 00:21:37 +00:00
|
|
|
local extension_sections = get_extension_sections()
|
2021-02-05 12:29:34 +00:00
|
|
|
if vim.g.statusline_winid == vim.fn.win_getid() then
|
2021-03-13 00:21:37 +00:00
|
|
|
local sections = extension_sections.sections
|
2021-03-17 00:02:13 +00:00
|
|
|
if sections == nil then sections = config.sections end
|
2021-03-13 00:21:37 +00:00
|
|
|
return statusline(sections, true)
|
2021-02-05 12:29:34 +00:00
|
|
|
else
|
2021-03-13 00:21:37 +00:00
|
|
|
local inactive_sections = extension_sections.inactive_sections
|
2021-03-17 00:02:13 +00:00
|
|
|
if inactive_sections == nil then
|
|
|
|
inactive_sections = config.inactive_sections
|
|
|
|
end
|
2021-03-13 00:21:37 +00:00
|
|
|
return statusline(inactive_sections, false)
|
2021-02-05 12:29:34 +00:00
|
|
|
end
|
2021-01-05 23:43:36 +00:00
|
|
|
end
|
|
|
|
|
2021-03-17 00:02:13 +00:00
|
|
|
local function tabline() return statusline(config.tabline, true) end
|
2021-03-06 15:03:00 +00:00
|
|
|
|
|
|
|
local function setup_theme()
|
2021-05-06 11:05:55 +00:00
|
|
|
local async_loader
|
2021-05-09 21:11:18 +00:00
|
|
|
async_loader = vim.loop.new_async(vim.schedule_wrap(
|
|
|
|
function()
|
|
|
|
local function get_theme_from_config()
|
|
|
|
local theme_name = config.options.theme
|
|
|
|
if type(theme_name) == 'string' then
|
|
|
|
local ok, theme = pcall(require, 'lualine.themes.' .. theme_name)
|
|
|
|
if ok then return theme end
|
|
|
|
elseif type(theme_name) == 'table' then
|
|
|
|
-- use the provided theme as-is
|
|
|
|
return config.options.theme
|
|
|
|
end
|
|
|
|
vim.api.nvim_err_writeln('theme ' .. tostring(theme_name) ..
|
2021-05-11 12:55:18 +00:00
|
|
|
' not found, defaulting to gruvbox')
|
2021-05-09 21:11:18 +00:00
|
|
|
return require 'lualine.themes.gruvbox'
|
|
|
|
end
|
|
|
|
local theme = get_theme_from_config()
|
|
|
|
highlight.create_highlight_groups(theme)
|
|
|
|
vim.api.nvim_exec([[
|
|
|
|
augroup lualine
|
|
|
|
autocmd ColorScheme * lua require'lualine.utils.utils'.reload_highlights()
|
|
|
|
augroup END
|
|
|
|
]], false)
|
|
|
|
async_loader:close()
|
|
|
|
end))
|
2021-05-06 11:05:55 +00:00
|
|
|
async_loader:send()
|
2021-01-04 00:17:51 +00:00
|
|
|
end
|
|
|
|
|
2021-03-06 15:03:00 +00:00
|
|
|
local function set_tabline()
|
2021-03-17 00:02:13 +00:00
|
|
|
if next(config.tabline) ~= nil then
|
2021-04-13 12:36:51 +00:00
|
|
|
vim.o.tabline = '%!v:lua.require\'lualine\'.tabline()'
|
2021-03-06 15:03:00 +00:00
|
|
|
vim.o.showtabline = 2
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
local function set_statusline()
|
2021-03-17 00:02:13 +00:00
|
|
|
if next(config.sections) ~= nil or next(config.inactive_sections) ~= nil then
|
2021-04-13 12:36:51 +00:00
|
|
|
vim.o.statusline = '%!v:lua.require\'lualine\'.statusline()'
|
2021-03-06 15:03:00 +00:00
|
|
|
vim.api.nvim_exec([[
|
2021-05-09 21:11:18 +00:00
|
|
|
augroup lualine
|
|
|
|
autocmd!
|
|
|
|
autocmd WinLeave,BufLeave * lua vim.wo.statusline=require'lualine'.statusline()
|
|
|
|
autocmd WinEnter,BufEnter * set statusline<
|
2021-05-11 10:47:09 +00:00
|
|
|
autocmd VimResized * redrawstatus
|
2021-05-09 21:11:18 +00:00
|
|
|
augroup END
|
2021-03-06 15:03:00 +00:00
|
|
|
]], false)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-03-25 11:03:43 +00:00
|
|
|
local function setup(user_config)
|
2021-05-09 21:11:18 +00:00
|
|
|
if user_config then
|
|
|
|
config_module.apply_configuration(user_config)
|
|
|
|
elseif vim.g.lualine then
|
|
|
|
config_module.apply_configuration(vim.g.lualine)
|
|
|
|
end
|
2021-03-06 15:03:00 +00:00
|
|
|
setup_theme()
|
2021-05-09 21:11:18 +00:00
|
|
|
loader.load_all(config)
|
2021-03-06 15:03:00 +00:00
|
|
|
set_statusline()
|
|
|
|
set_tabline()
|
2020-12-30 14:48:51 +00:00
|
|
|
end
|
|
|
|
|
2021-04-13 12:36:51 +00:00
|
|
|
return {setup = setup, statusline = status_dispatch, tabline = tabline}
|