Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add tinted-vim support #1357

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lua/lualine/themes/base16.lua
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ local function setup_base16_nvim()
end

local function setup_base16_vim()
-- Check if tinted-theming/base16-vim is already loaded
if vim.g.base16_gui00 and vim.g.base16_gui0F then
-- Check if tinted-theming/tinted-vim is already loaded
if (vim.g.base16_gui00 and vim.g.base16_gui0F) or (vim.g.tinted_gui00 and vim.g.tinted_gui0F) then
return setup {
bg = vim.g.base16_gui01,
alt_bg = vim.g.base16_gui02,
Expand Down