ref(nvim): reformat using the all mighty lsp

This commit is contained in:
Léana 江 2023-02-23 12:11:02 +01:00
parent 88a5ea7267
commit bc9b520671
12 changed files with 147 additions and 152 deletions

View file

@ -1,9 +1,9 @@
require('lualine').setup {
require('lualine').setup({
options = {
icons_enabled = true,
theme = 'auto',
component_separators = { left = '', right = ''},
section_separators = { left = '', right = ''},
component_separators = { left = '', right = '' },
section_separators = { left = '', right = '' },
disabled_filetypes = {
statusline = {},
winbar = {},
@ -18,18 +18,18 @@ require('lualine').setup {
}
},
sections = {
lualine_a = {'mode'},
lualine_b = {'branch', 'diff', 'diagnostics'},
lualine_c = {'filename'},
lualine_x = {'encoding'},
lualine_y = {'progress'},
lualine_z = {'location'}
lualine_a = { 'mode' },
lualine_b = { 'branch', 'diff', 'diagnostics' },
lualine_c = { 'filename' },
lualine_x = { 'encoding' },
lualine_y = { 'progress' },
lualine_z = { 'location' }
},
inactive_sections = {
lualine_a = {},
lualine_b = {},
lualine_c = {'filename'},
lualine_x = {'location'},
lualine_c = { 'filename' },
lualine_x = { 'location' },
lualine_y = {},
lualine_z = {}
},
@ -37,5 +37,4 @@ require('lualine').setup {
winbar = {},
inactive_winbar = {},
extensions = {}
}
})