summaryrefslogtreecommitdiff
path: root/lua/style.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/style.lua')
-rw-r--r--lua/style.lua14
1 files changed, 8 insertions, 6 deletions
diff --git a/lua/style.lua b/lua/style.lua
index d13ecaa..f36de39 100644
--- a/lua/style.lua
+++ b/lua/style.lua
@@ -11,12 +11,14 @@ require('ayu').setup({
vim.cmd("colorscheme ayu-dark")
+local ayu_dark_lualine_theme = require'lualine.themes.ayu_dark'
+
require('lualine').setup({
- options = {
- theme = 'ayu',
- },
- tabline = {
- lualine_a = { "buffers" }
- }
+ options = {
+ theme = ayu_dark_lualine_theme,
+ },
+ tabline = {
+ lualine_a = { "buffers" }
+ }
})