diff options
author | HampusM <hampus@hampusmat.com> | 2024-06-01 00:07:18 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-06-01 00:07:18 +0200 |
commit | ba02708d2760ae87af4a2084cb2f38a09e8bf71b (patch) | |
tree | 0f454dfaef2fe13cdef3a74c1d9f845788859972 /lua/style.lua | |
parent | 0b9539bf3ff368288bdaace89d488a93fc2fc421 (diff) |
use other Ayu theme fork
Diffstat (limited to 'lua/style.lua')
-rw-r--r-- | lua/style.lua | 12 |
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" |