From ab6d61c5fc5f8adebd46691f94cf35c32ae631db Mon Sep 17 00:00:00 2001 From: "eric.marin" Date: Sun, 7 Sep 2025 21:17:26 +0200 Subject: changed a bunch of things updated the Wallpaper Menu and adjusted other things --- nvim/lua/plugins/lspsaga.lua | 63 +++++++++++++++++++++----------------------- 1 file changed, 30 insertions(+), 33 deletions(-) (limited to 'nvim/lua/plugins/lspsaga.lua') diff --git a/nvim/lua/plugins/lspsaga.lua b/nvim/lua/plugins/lspsaga.lua index b87260a..48ac080 100644 --- a/nvim/lua/plugins/lspsaga.lua +++ b/nvim/lua/plugins/lspsaga.lua @@ -1,38 +1,35 @@ local config = function() - vim.diagnostic.config({ - severity_sort = true, - }) - require("lspsaga").setup({ - ui = { - code_action = "", - }, - outline = { - keys = { - toggle_or_jump = "" - } - }, - finder = { - keys = { - toggle_or_open = "", - shuttle = "", - } - }, - diagnostic = { - diagnostic_only_current = true, - } - }) - vim.diagnostic.config({ - virtual_text = false - }) + vim.diagnostic.config({ + severity_sort = true, + }) + require("lspsaga").setup({ + ui = { + code_action = "", + }, + outline = { + keys = { + toggle_or_jump = "" + } + }, + finder = { + keys = { + toggle_or_open = "", + shuttle = "", + } + }, + }) + vim.diagnostic.config({ + virtual_text = true + }) end return { - "nvimdev/lspsaga.nvim", - lazy = true, - event = { "BufReadPost", "BufWritePost", "BufNewFile" }, - config = config, - dependencies = { - "nvim-treesitter/nvim-treesitter", -- optional - "nvim-tree/nvim-web-devicons", -- optional - }, + "nvimdev/lspsaga.nvim", + lazy = true, + event = { "BufReadPost", "BufWritePost", "BufNewFile" }, + config = config, + dependencies = { + "nvim-treesitter/nvim-treesitter", -- optional + "nvim-tree/nvim-web-devicons", -- optional + }, } -- cgit v1.2.3