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