Skip to content

Commit

Permalink
Lualine Come piace a me
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-zan committed Nov 19, 2023
1 parent 68dd4f8 commit 66ec245
Showing 1 changed file with 44 additions and 4 deletions.
48 changes: 44 additions & 4 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -102,13 +102,53 @@ require('lazy').setup({
-- See `:help lualine.txt`
opts = {
options = {
icons_enabled = false,
globalstatus = true,
icons_enabled = true,
theme = 'tokyonight',
component_separators = '|',
section_separators = ''
-- component_separators = '|',
-- section_separators = ''
component_separators = { left = '', right = ''},
section_separators = { left = '', right = ''},
},
sections = {
lualine_y = { 'progress', { getWords }}
lualine_a = {"filetype"},
lualine_b = {'diff', 'diagnostics'},
lualine_c = {'branch'},
lualine_x = {'encoding', 'fileformat'},
lualine_y = {
"location",
-- { getWords }
},
lualine_z = { "mode" }
},
winbar = {
lualine_a = {},
lualine_b = {},
lualine_c = {
{
'filename',
file_status = true,
path = 1
}
},
lualine_x = {},
lualine_y = {},
lualine_z = {}
},

inactive_winbar = {
lualine_a = {},
lualine_b = {},
lualine_c = {
{
'filename',
file_status = true,
path = 1
}
},
lualine_x = {},
lualine_y = {},
lualine_z = {}
}
},
},
Expand Down

0 comments on commit 66ec245

Please sign in to comment.