diff options
author | kylo252 <[email protected]> | 2022-03-19 20:02:45 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2022-03-19 20:02:45 +0100 |
commit | c946ddda812c5c2d217061a9016eb8001970d659 (patch) | |
tree | eec7964b135a160244f5ef919f28658c4a988237 /lua/lvim/core/lualine/utils.lua | |
parent | 7192b28a24d52b62029c414db46b9fd3a5de475e (diff) |
feat: add alpha.nvim integration (#1906)
Diffstat (limited to 'lua/lvim/core/lualine/utils.lua')
-rw-r--r-- | lua/lvim/core/lualine/utils.lua | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/lua/lvim/core/lualine/utils.lua b/lua/lvim/core/lualine/utils.lua index d685e044..3fd3c2d3 100644 --- a/lua/lvim/core/lualine/utils.lua +++ b/lua/lvim/core/lualine/utils.lua @@ -1,18 +1,5 @@ local M = {} -function M.validate_theme() - local theme = lvim.builtin.lualine.options.theme or "auto" - if type(theme) == "table" then - return - end - - local lualine_loader = require "lualine.utils.loader" - local ok = pcall(lualine_loader.load_theme, theme) - if not ok then - lvim.builtin.lualine.options.theme = "auto" - end -end - function M.env_cleanup(venv) if string.find(venv, "/") then local final_venv = venv |