updated neovim configuration

added telescop and fuzzy finding along with lsp and git integration
This commit is contained in:
hellisabove
2023-01-26 00:50:03 +02:00
parent ea718c82b6
commit 0002e01d23
11 changed files with 336 additions and 3 deletions
+19
View File
@@ -0,0 +1,19 @@
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",
},
},
})