diff options
Diffstat (limited to 'lua/style.lua')
-rw-r--r-- | lua/style.lua | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/lua/style.lua b/lua/style.lua index ec06d8e..7e329b5 100644 --- a/lua/style.lua +++ b/lua/style.lua @@ -10,6 +10,12 @@ require('ayu').setup({ vim.cmd("colorscheme ayu-dark") -vim.g["airline#extensions#tabline#enabled"] = 1 -vim.g["airline#extensions#tabline#formatter"] = "unique_tail_improved" +require('lualine').setup({ + options = { + theme = 'ayu', + }, + tabline = { + lualine_a = { "buffers" } + } +}) |