more restructure

This commit is contained in:
2022-12-28 14:29:23 +01:00
parent fd16ef223a
commit ce61facff9
18 changed files with 533 additions and 545 deletions

32
lua/plugins/lualine.lua Normal file
View File

@ -0,0 +1,32 @@
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 = {}
},
}
}