return { "nvimdev/lspsaga.nvim", dependencies = { "nvim-treesitter/nvim-treesitter", -- optional "nvim-tree/nvim-web-devicons", -- optional }, keys = { --{ "ss", "Lspsaga diagnostic_jump_next" }, { "gf", "Lspsaga lsp_finder" }, { "gd", "Lspsaga peek_definition" }, { "rn", "Lspsaga rename" }, { "y", "Lspsaga finder" }, }, config = function() require("lspsaga").setup({ scroll_preview = { scroll_down = "", scroll_up = "" }, definition = { edit = "", }, ui = { colors = { -- normal_bg = "#022746", }, code_action = { enable = false, }, }, }) end, }