parent
c522f86d90
commit
cc2df09309
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue