blob: d13ecaa3e937a3571e4be1f025db22a808b88541 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
local ayu_colors = require('ayu.colors')
ayu_colors.generate() -- Pass `true` to enable mirage
require('ayu').setup({
overrides = {
WinSeparator = { fg = ayu_colors.bg, bg = ayu_colors.bg },
NERDTreeWindow = { fg = ayu_colors.fg, bg = ayu_colors.panel_bg }
}
})
vim.cmd("colorscheme ayu-dark")
require('lualine').setup({
options = {
theme = 'ayu',
},
tabline = {
lualine_a = { "buffers" }
}
})
|