dotfiles/mzte-nv/conf/lua/pluginconf/line.lua

22 lines
432 B
Lua
Raw Normal View History

2022-01-29 20:50:10 +01:00
local lline = require "lualine"
lline.setup {
options = {
theme = "dracula",
},
sections = {
2023-01-26 22:36:08 +01:00
lualine_b = { "filename", "diff" },
lualine_c = { "diagnostics" },
},
tabline = {
lualine_a = {
{
"tabs",
mode = 1, -- show file name
},
},
lualine_x = { "searchcount" },
lualine_y = { "branch" },
2022-01-29 20:50:10 +01:00
},
}