telescope configs

asdf
This commit is contained in:
cmccay 2022-12-02 15:48:18 -06:00
parent c522f86d90
commit cc2df09309
1 changed files with 13 additions and 1 deletions

View File

@ -7,13 +7,25 @@ require("lsp")
-- todo: move this to plugins.lua
require("telescope").setup{
defaults = {
sorting_strategy = "ascending",
layout_strategy = "horizontal",
layout_config = {
prompt_position = "top",
},
prompt_prefix = "$ ",
mappings = {
i = {
["C-a"] = function() print("asdf") end
}
}
}
},
pickers = {
live_grep = {
additional_args = function(opts)
return {"--hidden"}
end
},
},
}
require("telescope").load_extension("fzf")