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
+23
View File
@@ -0,0 +1,23 @@
local telescope_setup, telescope = pcall(require, "telescope")
if not telescope_setup then
return
end
local actions_setup, actions = pcall(require, "telescope.actions")
if not actions_setup then
return
end
telescope.setup({
defaults = {
mappings = {
i = {
["<C-k>"] = actions.move_selection_previous,
["<C-j>"] = actions.move_selection_next,
["<C-q>"] = actions.send_selected_to_qflist + actions.open_qflist,
}
}
}
})
telescope.load_extension("fzf")