Cleaned base and added fish config

This commit is contained in:
hellisabove
2025-02-01 21:24:10 +02:00
parent aa920cc3b4
commit 3197b6a33c
15 changed files with 474 additions and 0 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")