add: update config global variable

This commit is contained in:
asep.komarudin 2024-05-21 15:17:31 +07:00
parent e59e8dba26
commit 24320e58f8
5 changed files with 15 additions and 29 deletions

View file

@ -20,23 +20,15 @@ end
local fidget = true
local lualine = false
local data_exists, custom_ui = pcall(require, "core.config")
if data_exists then
if type(custom_ui) == "table" then
if custom_ui.progress == 1 then
fidget = false
lualine = true
elseif custom_ui.progress == 2 then
fidget = true
lualine = false
elseif custom_ui.progress == 0 then
fidget = false
lualine = false
else
fidget = true
lualine = false
end
end
if vim.g.pcode_progress == 1 then
fidget = false
lualine = true
elseif vim.g.pcode_progress == 2 then
fidget = true
lualine = false
elseif vim.g.pcode_progress == 0 then
fidget = false
lualine = false
else
fidget = true
lualine = false

View file

@ -1,18 +1,14 @@
local transparent = false
local clear_lualine = false
local data_exists, config = pcall(require, "core.config")
if not data_exists then
return
end
local transparent_mode = config.transparent_mode
local transparent_mode = vim.g.pcode_transparent_mode
if transparent_mode ~= nil then
if transparent_mode == 1 then
transparent = true
end
end
local clear_line = config.clear_lualine
local clear_line = vim.g.pcode_clear_lualine
if clear_line ~= nil then
if clear_line == 1 then
clear_lualine = true