Added remaps for moving between buffers

Added lsp icons for bufferline
This commit is contained in:
2023-06-22 12:04:46 +02:00
parent 3bac8087cf
commit ecf35fb391
2 changed files with 46 additions and 31 deletions

View File

@@ -29,5 +29,14 @@ bufferline.setup {
return icon, hl
end,
always_show_bufferline = true,
diagnostics = "nvim_lsp",
diagnostics_update_in_insert = false,
diagnostics_indicator = function(count, level, diagnostics_dict, context)
if context.buffer:current() then
return ''
end
return ''
end
}
}