style(nvim): remove extraneous comments

This commit is contained in:
Price Hiller 2022-10-07 13:19:19 -05:00
parent 878d1549ec
commit 36ebfc2647

View File

@ -42,18 +42,13 @@ lualine.setup({
options = { options = {
icons_enabled = true, icons_enabled = true,
theme = "auto", theme = "auto",
-- component_separators = { left = '', right = '' },
-- section_separators = { left = '', right = '' },
-- component_separators = { left = '', right = '' },
-- section_separators = { left = '', right = '' },
component_separators = { left = "", right = "" }, component_separators = { left = "", right = "" },
section_separators = { left = "", right = "" }, section_separators = { left = "", right = "" },
disabled_filetypes = {}, disabled_filetypes = {},
always_divide_middle = true, always_divide_middle = true,
globalstatus = true, -- requires neovim 0.7 or highter globalstatus = true,
}, },
sections = { sections = {
-- Left
lualine_a = { lualine_a = {
{ {
"mode", "mode",
@ -67,13 +62,11 @@ lualine.setup({
}, },
{ {
"diff", "diff",
symbols = { added = "+", modified = "~", removed = "-" }, symbols = { added = "", modified = "", removed = "" },
-- symbols = { added = ' ', modified = ' ', removed = ' ' },
}, },
{ {
"diagnostics", "diagnostics",
sources = { "nvim_diagnostic" }, sources = { "nvim_diagnostic" },
-- symbols = { error = ' ', warn = ' ', info = ' ', hint = ' ' },
symbols = { error = "", warn = "", info = "", hint = "" }, symbols = { error = "", warn = "", info = "", hint = "" },
}, },
{ {