Skip to content

Commit

Permalink
nvim: trouble: Make work with nvim 0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
cdown committed Jun 8, 2024
1 parent 419e92c commit 8b4be06
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions .config/nvim/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,21 @@ end
require('trouble').setup({
auto_open = true,
auto_close = true,

-- No icons
icons = false,
fold_open = "v",
fold_closed = ">",
indent_lines = false,
signs = {
error = "E",
warning = "W",
hint = "H",
information = "I"
icons = {
indent = {
top = "| ",
middle = "+-",
last = "`-",
fold_open = "> ",
fold_closed = "v ",
ws = " ",
},
folder_closed = "[ ] ",
folder_open = "[>] ",
},
use_diagnostic_signs = false,
})

local nvim_lsp = require('lspconfig')
Expand Down

0 comments on commit 8b4be06

Please sign in to comment.