mirror of
https://github.com/tiyn/dotfiles.git
synced 2025-03-19 02:17:44 +01:00
18 lines
375 B
Lua
18 lines
375 B
Lua
|
require("telescope").setup {
|
||
|
extensions = {
|
||
|
file_browser = {
|
||
|
theme = "ivy",
|
||
|
-- disables netrw and use telescope-file-browser in its place
|
||
|
hijack_netrw = true,
|
||
|
mappings = {
|
||
|
["i"] = {
|
||
|
-- your custom insert mode mappings
|
||
|
},
|
||
|
["n"] = {
|
||
|
-- your custom normal mode mappings
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
}
|