You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
953 B

  1. require('lualine').setup {
  2. options = {
  3. icons_enabled = true,
  4. theme = 'catppuccin-mocha',
  5. component_separators = { left = '', right = ''},
  6. section_separators = { left = '', right = ''},
  7. disabled_filetypes = {
  8. statusline = {},
  9. winbar = {},
  10. },
  11. ignore_focus = {},
  12. always_divide_middle = true,
  13. globalstatus = false,
  14. refresh = {
  15. statusline = 1000,
  16. tabline = 1000,
  17. winbar = 1000,
  18. }
  19. },
  20. sections = {
  21. lualine_a = {'mode'},
  22. lualine_b = {'branch', 'diff', 'diagnostics'},
  23. lualine_c = {'filename'},
  24. lualine_x = {'encoding', 'fileformat', 'filetype'},
  25. lualine_y = {'progress'},
  26. lualine_z = {'location'}
  27. },
  28. inactive_sections = {
  29. lualine_a = {},
  30. lualine_b = {},
  31. lualine_c = {'filename'},
  32. lualine_x = {'location'},
  33. lualine_y = {},
  34. lualine_z = {}
  35. },
  36. tabline = {},
  37. winbar = {},
  38. inactive_winbar = {},
  39. extensions = {}
  40. }