Remove the is_mirage var from ayu impl. It's not necessarily bad,
however, it's inconsistent since I'm already using it hardcoded in other places where I need the colors generated and I cba to implement a dedicated handle for it.
This commit is contained in:
parent
f542125e92
commit
9417ccf858
1 changed files with 3 additions and 5 deletions
|
|
@ -26,11 +26,9 @@ end
|
||||||
return {
|
return {
|
||||||
"Shatur/neovim-ayu",
|
"Shatur/neovim-ayu",
|
||||||
config = function()
|
config = function()
|
||||||
local is_mirage = true
|
|
||||||
|
|
||||||
local ayu = require("ayu")
|
local ayu = require("ayu")
|
||||||
local colors = require("ayu.colors")
|
local colors = require("ayu.colors")
|
||||||
colors.generate(is_mirage)
|
colors.generate(true)
|
||||||
|
|
||||||
local overrides = {
|
local overrides = {
|
||||||
global_variable = {
|
global_variable = {
|
||||||
|
|
@ -56,8 +54,8 @@ return {
|
||||||
}
|
}
|
||||||
|
|
||||||
ayu.setup({
|
ayu.setup({
|
||||||
mirage = is_mirage, -- Set to `true` to use `mirage` variant instead of `dark` for dark background.
|
mirage = true,
|
||||||
terminal = false, -- Set to `false` to let terminal manage its own colors.
|
terminal = false,
|
||||||
overrides = {
|
overrides = {
|
||||||
-- TRANSPARENCY
|
-- TRANSPARENCY
|
||||||
Normal = { bg = "none" },
|
Normal = { bg = "none" },
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue