diff options
author | HampusM <hampus@hampusmat.com> | 2024-06-01 01:47:59 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-06-01 01:47:59 +0200 |
commit | b2c11685b7a91fc4b6f8e651e59ebddba465f78b (patch) | |
tree | cca2ada7887209e80e38b5bbccf0580c362af63e /lua | |
parent | 3201478b5ed74340820c66a05eb34ae39d0c9fa0 (diff) |
force Lualine to use dark Ayu theme
Diffstat (limited to 'lua')
-rw-r--r-- | lua/style.lua | 14 |
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" } + } }) |