blob: 7e329b5b7d1d9b8ca3efca51867ec69bf4edfd95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
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 }
}
})
vim.cmd("colorscheme ayu-dark")
require('lualine').setup({
options = {
theme = 'ayu',
},
tabline = {
lualine_a = { "buffers" }
}
})
|