return { "nvimdev/lspsaga.nvim", dependencies = { "nvim-treesitter/nvim-treesitter", -- optional "nvim-tree/nvim-web-devicons", -- optional }, keys = { -- { "gf", "Lspsaga lsp_finder" }, -- { "gd", "Lspsaga peek_definition" }, -- { "rn", "rn", "Lspsaga rename" }, -- { "y", "rn", "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, }