[nvim] add trouble

This commit is contained in:
eleith 2023-09-27 04:01:07 +00:00
parent bc0417499a
commit 9f8f5cbebc
3 changed files with 11 additions and 2 deletions

View File

@ -47,7 +47,7 @@ vim.cmd("set tabstop=2")
-- tabs are represented by 2 spaces during auto-indent
vim.cmd("set shiftwidth=2")
-- set title as new files are opened
-- set title as new buffers/files are opened
vim.cmd("set titlestring=vi\\ %t")
vim.cmd("set title")

View File

@ -17,7 +17,7 @@ return {
},
rename = {
in_select = false
}
},
})
local keymap = vim.keymap.set

View File

@ -0,0 +1,9 @@
return {
"folke/trouble.nvim",
dependencies = { "nvim-tree/nvim-web-devicons" },
opts = {
-- your configuration comes here
-- or leave it empty to use the default settings
-- refer to the configuration section below
},
}