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.

67 lines
2.0 KiB

1 month ago
1 month ago
  1. return {
  2. "nvim-lualine/lualine.nvim",
  3. dependencies = {
  4. "nvim-tree/nvim-web-devicons",
  5. "letieu/harpoon-lualine",
  6. },
  7. config = function()
  8. local lualine = require("lualine")
  9. local lazy_status = require("lazy.status")
  10. local function macro_recording()
  11. local recording_register = vim.fn.reg_recording()
  12. if recording_register == "" then
  13. return ""
  14. else
  15. return "Recording @" .. recording_register
  16. end
  17. end
  18. lualine.setup({
  19. options = {
  20. theme = "kanagawa",
  21. component_separators = { left = "", right = "" },
  22. section_separators = { left = "", right = "" },
  23. globalstatus = true,
  24. },
  25. extensions = {
  26. "fugitive",
  27. "oil",
  28. "quickfix",
  29. },
  30. sections = {
  31. lualine_b = {
  32. { "branch" },
  33. { "diff" },
  34. { "diagnostics" },
  35. {
  36. function()
  37. local buffers = vim.fn.getbufinfo({ buflisted = true })
  38. return "Buffers: " .. #buffers
  39. end,
  40. },
  41. },
  42. lualine_c = {
  43. { "filename", file_status = true, path = 1 },
  44. { "harpoon2" },
  45. { macro_recording, color = { fg = "#ff9e64", gui = "bold" } },
  46. },
  47. lualine_x = {
  48. {
  49. lazy_status.updates,
  50. cond = lazy_status.has_updates,
  51. color = { fg = "#ff9e64" },
  52. },
  53. { "fileformat" },
  54. { "filetype" },
  55. },
  56. lualine_y = {
  57. { "progress" },
  58. },
  59. lualine_z = {
  60. { "location" }
  61. },
  62. },
  63. })
  64. end,
  65. }