Arch 2025 rice. Also contains a newly inspired neovim config.
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
1.1 KiB

  1. return {
  2. {
  3. "neanias/everforest-nvim",
  4. version = false,
  5. lazy = false,
  6. priority = 1000, -- make sure to load this before all the other start plugins
  7. -- Optional; default configuration will be used if setup isn't called.
  8. config = function()
  9. require("everforest").setup({
  10. -- Your config here
  11. transparent_background_level = 1,
  12. background = "medium",
  13. })
  14. vim.cmd.colorscheme 'everforest'
  15. end,
  16. },
  17. {
  18. 'nvim-lualine/lualine.nvim',
  19. dependencies = { 'nvim-tree/nvim-web-devicons' },
  20. init = function()
  21. vim.opt.laststatus = 3
  22. end,
  23. opts = {
  24. options = {
  25. icons_enabled = true,
  26. theme = 'auto',
  27. section_separators = { left = '', right = '' },
  28. component_separators = { left = '', right = '' },
  29. },
  30. sections = {
  31. lualine_a = { 'mode' },
  32. lualine_b = { 'branch', 'diff', 'diagnostics' },
  33. lualine_c = { 'filename' },
  34. lualine_x = { 'encoding', 'fileformat', 'filetype' },
  35. lualine_y = { require('themes.utils').getWords },
  36. },
  37. }
  38. },
  39. }