33 lines
896 B
Lua
33 lines
896 B
Lua
return {
|
|
'hoob3rt/lualine.nvim',
|
|
dependencies = { 'kyazdani42/nvim-web-devicons' },
|
|
config = {
|
|
options = {
|
|
theme = 'gruvbox-flat',
|
|
disabled_filetypes = {
|
|
statusline = {},
|
|
winbar = { 'dap-repl', 'dapui_console' },
|
|
},
|
|
},
|
|
sections = { lualine_c = { 'getcwd', { 'filename', path = 1, file_status = true } } },
|
|
inactive_sections = { lualine_c = { 'getcwd', { 'filename', path = 1, file_status = true } } },
|
|
globalstatus = true,
|
|
winbar = {
|
|
lualine_a = {},
|
|
lualine_b = {},
|
|
lualine_c = { { 'filename', path = 1, file_status = true } },
|
|
lualine_x = {},
|
|
lualine_y = {},
|
|
lualine_z = {}
|
|
},
|
|
inactive_winbar = {
|
|
lualine_a = {},
|
|
lualine_b = {},
|
|
lualine_c = { { 'filename', path = 1, file_status = true } },
|
|
lualine_x = {},
|
|
lualine_y = {},
|
|
lualine_z = {}
|
|
},
|
|
}
|
|
}
|