Skip to content

Commit

Permalink
Mark buffers with LSP errors
Browse files Browse the repository at this point in the history
  • Loading branch information
oalders committed Nov 24, 2023
1 parent 844afe9 commit c769205
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion nvim/lua/plugins/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,9 @@ vim.keymap.set("n", "<leader>xq", function() require("trouble").open("quickfix")
vim.keymap.set("n", "<leader>xl", function() require("trouble").open("loclist") end)
vim.keymap.set("n", "gR", function() require("trouble").open("lsp_references") end)

require('bufferline').setup()
require('bufferline').setup {
options = { diagnostics = 'nvim_lsp' }
}
require('glow').setup()

require('conf/lualine')
Expand Down

0 comments on commit c769205

Please sign in to comment.