Files
dotfiles/config/nvim/lua/lsp/lspsaga.lua
T
hellisabove 0002e01d23 updated neovim configuration
added telescop and fuzzy finding along with lsp and git integration
2023-01-26 00:50:03 +02:00

20 lines
328 B
Lua

local saga_status, saga = pcall(require, "lspsaga")
if not saga_status then
return
end
saga.setup({
scroll_preview = {
scroll_down = "<C-f>",
scroll_up = "<C-b>"
},
definition = {
edit = "<CR>"
},
ui = {
colors = {
normal_bg = "#022746",
},
},
})