diff options
author | Luca Matei Pintilie <luca@lucamatei.com> | 2024-09-15 20:43:40 +0000 |
---|---|---|
committer | Luca Matei Pintilie <luca@lucamatei.com> | 2024-09-15 20:43:40 +0000 |
commit | 158da0df92ffaeeb3e832eab86fdd40a8f609e74 (patch) | |
tree | 3b2f8dbd38bc57f92911ec34f994fe3a2dcb1456 /.config/nvim/lua/plugins.lua | |
parent | fb97ace1667c5f6841a5978526f516b9e0f16b19 (diff) | |
download | dotfiles-158da0df92ffaeeb3e832eab86fdd40a8f609e74.tar dotfiles-158da0df92ffaeeb3e832eab86fdd40a8f609e74.tar.gz dotfiles-158da0df92ffaeeb3e832eab86fdd40a8f609e74.tar.bz2 dotfiles-158da0df92ffaeeb3e832eab86fdd40a8f609e74.tar.lz dotfiles-158da0df92ffaeeb3e832eab86fdd40a8f609e74.tar.xz dotfiles-158da0df92ffaeeb3e832eab86fdd40a8f609e74.tar.zst dotfiles-158da0df92ffaeeb3e832eab86fdd40a8f609e74.zip |
nvim: update deps and format
Diffstat (limited to '')
-rw-r--r-- | .config/nvim/lua/plugins.lua | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.config/nvim/lua/plugins.lua b/.config/nvim/lua/plugins.lua index 11b0b3d..1b502eb 100644 --- a/.config/nvim/lua/plugins.lua +++ b/.config/nvim/lua/plugins.lua @@ -114,6 +114,7 @@ local function init_plugins() local telescopeConfig = require("telescope.config") local previewers = require("telescope.previewers") local lsp_lens = require("lsp-lens") + local trouble = require("trouble") local _bad = { ".*%.cshtml" } local bad_files = function(filepath) @@ -439,6 +440,13 @@ local function init_plugins() SymbolKind.Interface; }; }) + + trouble.setup({ + use_lsp_diagnostic_signs = true; + indent_lines = true; + warn_no_results = false; + open_no_results = true; + }) end local function clone_paq() |