summaryrefslogtreecommitdiff
path: root/lua/style.lua
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2024-06-01 00:07:18 +0200
committerHampusM <hampus@hampusmat.com>2024-06-01 00:07:18 +0200
commitba02708d2760ae87af4a2084cb2f38a09e8bf71b (patch)
tree0f454dfaef2fe13cdef3a74c1d9f845788859972 /lua/style.lua
parent0b9539bf3ff368288bdaace89d488a93fc2fc421 (diff)
use other Ayu theme fork
Diffstat (limited to 'lua/style.lua')
-rw-r--r--lua/style.lua12
1 files changed, 10 insertions, 2 deletions
diff --git a/lua/style.lua b/lua/style.lua
index 3a31d91..ec06d8e 100644
--- a/lua/style.lua
+++ b/lua/style.lua
@@ -1,6 +1,14 @@
-vim.cmd("colorscheme ayu")
+local ayu_colors = require('ayu.colors')
-vim.g.ayucolor = "dark"
+ayu_colors.generate() -- Pass `true` to enable mirage
+
+require('ayu').setup({
+ overrides = {
+ WinSeparator = { fg = ayu_colors.bg, bg = ayu_colors.bg }
+ }
+})
+
+vim.cmd("colorscheme ayu-dark")
vim.g["airline#extensions#tabline#enabled"] = 1
vim.g["airline#extensions#tabline#formatter"] = "unique_tail_improved"