refactor: removed ability to set theme in runtime (#130)

This commit is contained in:
Hubert Pelczarski 2021-03-16 00:13:10 +01:00 committed by GitHub
parent 6e64822f50
commit 3e0332e6d2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 7 deletions

View File

@ -7,8 +7,6 @@ local highlight = require('lualine.highlight')
local M = { }
local theme_set = {}
M.options = {
icons_enabled = true,
theme = 'gruvbox',
@ -16,7 +14,6 @@ M.options = {
section_separators = {'', ''},
}
M.sections = {
lualine_a = { 'mode' },
lualine_b = { 'branch' },
@ -201,14 +198,10 @@ local function lualine_set_theme()
end
utils.clear_highlights()
highlight.create_highlight_groups(M.options.theme)
theme_set = M.options.theme
end
local function statusline(sections, is_focused)
if M.options.theme ~= theme_set then
_G.lualine_set_theme()
end
local function create_status_builder()
-- The sequence sections should maintain
local section_sequence = {'a', 'b', 'c', 'x', 'y', 'z'}