2024-01-16 12:52:36 -03:00
|
|
|
return {
|
2024-07-26 19:33:44 -03:00
|
|
|
-- "nvim-lualine/lualine.nvim",
|
|
|
|
-- dependencies = { "nvim-tree/nvim-web-devicons" },
|
|
|
|
-- config = function()
|
2024-07-27 08:51:13 -03:00
|
|
|
-- vim.opt.fillchars = {
|
|
|
|
-- stl = " ",
|
|
|
|
-- stlnc = " ",
|
|
|
|
-- }
|
|
|
|
--
|
2024-07-26 19:33:44 -03:00
|
|
|
-- local lualine = require("lualine")
|
|
|
|
--
|
|
|
|
-- local colors = {
|
|
|
|
-- blue = "#268bd2",
|
|
|
|
-- green = "#859900",
|
|
|
|
-- violet = "#6c71c4",
|
|
|
|
-- yellow = "#b58900",
|
|
|
|
-- red = "#dc332f",
|
|
|
|
-- cream = "#fdf6e3",
|
|
|
|
-- black = "#002b36",
|
|
|
|
-- grey = "#073642",
|
|
|
|
-- dark = "#002b36",
|
|
|
|
-- }
|
|
|
|
--
|
|
|
|
-- local solarized = {
|
|
|
|
-- normal = {
|
|
|
|
-- a = { bg = colors.dark, fg = colors.cream, gui = "bold" },
|
|
|
|
-- c = { bg = colors.grey, fg = colors.cream, gui = "bold" },
|
|
|
|
-- },
|
|
|
|
-- insert = {
|
|
|
|
-- a = { bg = colors.grey, fg = colors.cream, gui = "bold" },
|
|
|
|
-- c = { bg = colors.black, fg = colors.cream, gui = "bold" },
|
|
|
|
-- },
|
|
|
|
-- visual = {
|
|
|
|
-- a = { bg = colors.violet, fg = colors.black, gui = "bold" },
|
|
|
|
-- c = { bg = colors.dark, fg = colors.cream, gui = "bold" },
|
|
|
|
-- },
|
|
|
|
-- command = {
|
|
|
|
-- a = { bg = colors.green, fg = colors.black, gui = "bold" },
|
|
|
|
-- c = { bg = colors.black, fg = colors.cream, gui = "bold" },
|
|
|
|
-- },
|
|
|
|
-- replace = {
|
|
|
|
-- a = { bg = colors.blue, fg = colors.black, gui = "bold" },
|
|
|
|
-- c = { bg = colors.black, fg = colors.cream, gui = "bold" },
|
|
|
|
-- },
|
|
|
|
-- inactive = {
|
|
|
|
-- a = { bg = colors.green, fg = colors.black, gui = "bold" },
|
|
|
|
-- c = { bg = colors.black, fg = colors.cream, gui = "bold" },
|
|
|
|
-- },
|
|
|
|
-- }
|
|
|
|
--
|
|
|
|
-- -- configure lualine with modified theme
|
|
|
|
-- lualine.setup({
|
|
|
|
-- options = {
|
|
|
|
-- theme = solarized,
|
|
|
|
-- component_separators = { left = "", right = "|" },
|
|
|
|
-- section_separators = { left = "", right = "" },
|
|
|
|
-- },
|
|
|
|
-- sections = {
|
|
|
|
-- lualine_a = {
|
|
|
|
-- "mode",
|
|
|
|
-- },
|
|
|
|
-- lualine_b = {},
|
2024-07-27 08:51:13 -03:00
|
|
|
-- lualine_c = { '%=', { 'filename', file_status = true } },
|
2024-07-26 19:33:44 -03:00
|
|
|
-- lualine_x = {},
|
|
|
|
-- lualine_y = {},
|
|
|
|
-- lualine_z = {
|
|
|
|
-- "location",
|
2024-07-27 08:51:13 -03:00
|
|
|
-- "progress",
|
2024-07-26 19:33:44 -03:00
|
|
|
-- },
|
|
|
|
-- },
|
|
|
|
-- inactive_sections = {
|
|
|
|
-- lualine_a = {},
|
|
|
|
-- lualine_b = {},
|
|
|
|
-- lualine_c = { "filename" },
|
|
|
|
-- lualine_x = { "location" },
|
|
|
|
-- lualine_y = {},
|
|
|
|
-- lualine_z = {},
|
|
|
|
-- },
|
|
|
|
-- tabline = {},
|
|
|
|
-- winbar = {},
|
|
|
|
-- inactive_winbar = {},
|
|
|
|
-- extensions = {},
|
|
|
|
-- })
|
|
|
|
-- end,
|
2024-01-16 12:52:36 -03:00
|
|
|
}
|