|
|
@@ -10,75 +10,74 @@ local colors = {
|
|
|
}
|
|
|
|
|
|
local bubbles_theme = {
|
|
|
- normal = {
|
|
|
- a = { fg = colors.black, bg = colors.violet },
|
|
|
- b = { fg = colors.white, bg = colors.grey },
|
|
|
- c = { fg = colors.white },
|
|
|
- },
|
|
|
+ normal = {
|
|
|
+ a = { fg = colors.black, bg = colors.violet },
|
|
|
+ b = { fg = colors.white, bg = colors.grey },
|
|
|
+ c = { fg = colors.white },
|
|
|
+ },
|
|
|
|
|
|
- insert = { a = { fg = colors.black, bg = colors.blue } },
|
|
|
- visual = { a = { fg = colors.black, bg = colors.cyan } },
|
|
|
- replace = { a = { fg = colors.black, bg = colors.red } },
|
|
|
+ insert = { a = { fg = colors.black, bg = colors.blue } },
|
|
|
+ visual = { a = { fg = colors.black, bg = colors.cyan } },
|
|
|
+ replace = { a = { fg = colors.black, bg = colors.red } },
|
|
|
|
|
|
- inactive = {
|
|
|
- a = { fg = colors.white, bg = colors.black },
|
|
|
- b = { fg = colors.white, bg = colors.black },
|
|
|
- c = { fg = colors.white },
|
|
|
- },
|
|
|
+ inactive = {
|
|
|
+ a = { fg = colors.white, bg = colors.black },
|
|
|
+ b = { fg = colors.white, bg = colors.black },
|
|
|
+ c = { fg = colors.white },
|
|
|
+ },
|
|
|
}
|
|
|
|
|
|
return {
|
|
|
- {
|
|
|
- 'nvim-lualine/lualine.nvim',
|
|
|
- dependencies = { 'nvim-tree/nvim-web-devicons' },
|
|
|
- config = function()
|
|
|
- require('lualine').setup {
|
|
|
- options = {
|
|
|
- icons_enabled = true,
|
|
|
- theme = bubbles_theme,
|
|
|
- -- theme = 'onedark',
|
|
|
- component_separators = '',
|
|
|
- section_separators = { left = '', right = '' },
|
|
|
- -- component_separators = { left = '', right = ''},
|
|
|
- -- section_separators = { left = '', right = ''},
|
|
|
- disabled_filetypes = {
|
|
|
- 'NvimTree',
|
|
|
- statusline = {},
|
|
|
- winbar = {},
|
|
|
- },
|
|
|
- ignore_focus = {},
|
|
|
- always_divide_middle = true,
|
|
|
- globalstatus = false,
|
|
|
- refresh = {
|
|
|
- statusline = 1000,
|
|
|
- tabline = 1000,
|
|
|
- winbar = 1000,
|
|
|
- }
|
|
|
- },
|
|
|
- sections = {
|
|
|
- lualine_a = { { 'mode', separator = { left = '' }, right_padding = 2 } },
|
|
|
- lualine_b = { 'filename', 'branch' },
|
|
|
- lualine_c = {
|
|
|
- '%=', --[[ add your center compoentnts here in place of this comment ]]
|
|
|
- },
|
|
|
- lualine_x = {},
|
|
|
- lualine_y = { 'filetype', 'progress' },
|
|
|
- lualine_z = {
|
|
|
- { 'location', separator = { right = '' }, left_padding = 2 },
|
|
|
- },
|
|
|
- },
|
|
|
- inactive_sections = {
|
|
|
- lualine_a = { 'filename' },
|
|
|
- lualine_b = {},
|
|
|
- lualine_c = {},
|
|
|
- lualine_x = {},
|
|
|
- lualine_y = {},
|
|
|
- lualine_z = { 'location' },
|
|
|
- },
|
|
|
- tabline = {},
|
|
|
- extensions = {},
|
|
|
-
|
|
|
- }
|
|
|
- end,
|
|
|
- }
|
|
|
+ {
|
|
|
+ "nvim-lualine/lualine.nvim",
|
|
|
+ dependencies = { "nvim-tree/nvim-web-devicons" },
|
|
|
+ config = function()
|
|
|
+ require("lualine").setup({
|
|
|
+ options = {
|
|
|
+ icons_enabled = true,
|
|
|
+ theme = bubbles_theme,
|
|
|
+ -- theme = 'onedark',
|
|
|
+ component_separators = "",
|
|
|
+ section_separators = { left = "", right = "" },
|
|
|
+ -- component_separators = { left = '', right = ''},
|
|
|
+ -- section_separators = { left = '', right = ''},
|
|
|
+ disabled_filetypes = {
|
|
|
+ "neo-tree", "trouble",
|
|
|
+ statusline = {},
|
|
|
+ winbar = {},
|
|
|
+ },
|
|
|
+ ignore_focus = {},
|
|
|
+ always_divide_middle = true,
|
|
|
+ globalstatus = false,
|
|
|
+ refresh = {
|
|
|
+ statusline = 1000,
|
|
|
+ tabline = 1000,
|
|
|
+ winbar = 1000,
|
|
|
+ },
|
|
|
+ },
|
|
|
+ sections = {
|
|
|
+ lualine_a = { { "mode", separator = { left = "" }, right_padding = 2 } },
|
|
|
+ lualine_b = { "filename", "branch" },
|
|
|
+ lualine_c = {
|
|
|
+ "%=", --[[ add your center compoentnts here in place of this comment ]]
|
|
|
+ },
|
|
|
+ lualine_x = {},
|
|
|
+ lualine_y = { "filetype", "progress" },
|
|
|
+ lualine_z = {
|
|
|
+ { "location", separator = { right = "" }, left_padding = 2 },
|
|
|
+ },
|
|
|
+ },
|
|
|
+ inactive_sections = {
|
|
|
+ lualine_a = { "filename" },
|
|
|
+ lualine_b = {},
|
|
|
+ lualine_c = {},
|
|
|
+ lualine_x = {},
|
|
|
+ lualine_y = {},
|
|
|
+ lualine_z = { "location" },
|
|
|
+ },
|
|
|
+ tabline = {},
|
|
|
+ extensions = {},
|
|
|
+ })
|
|
|
+ end,
|
|
|
+ },
|
|
|
}
|