diff options
author | HampusM <hampus@hampusmat.com> | 2024-06-01 01:18:02 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2024-06-01 01:18:02 +0200 |
commit | 2af06d6e050b1653bd4e085e27262738ec7da136 (patch) | |
tree | ba1ee8015584059231419dd49d4fce801c53085d /lua/style.lua | |
parent | 722eb1d2c7029085fd33c2a80efb2c1facc8cfae (diff) |
use lualine plugin
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" } + } +}) |