mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-17 01:13:41 +01:00
21 lines
432 B
Lua
21 lines
432 B
Lua
local lline = require "lualine"
|
|
|
|
lline.setup {
|
|
options = {
|
|
theme = "dracula",
|
|
},
|
|
sections = {
|
|
lualine_b = { "filename", "diff" },
|
|
lualine_c = { "diagnostics" },
|
|
},
|
|
tabline = {
|
|
lualine_a = {
|
|
{
|
|
"tabs",
|
|
mode = 1, -- show file name
|
|
},
|
|
},
|
|
lualine_x = { "searchcount" },
|
|
lualine_y = { "branch" },
|
|
},
|
|
}
|