home: vim: use actual lua files
Since most of the settings are actually just lua in a VimL file.
This commit is contained in:
parent
9530864b10
commit
c2d231d3f1
20 changed files with 0 additions and 41 deletions
24
home/vim/plugin/settings/telescope.lua
Normal file
24
home/vim/plugin/settings/telescope.lua
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
local telescope = require("telescope")
|
||||
|
||||
telescope.setup({
|
||||
defaults = {
|
||||
mappings = {
|
||||
i = {
|
||||
["<C-h>"] = "which_key",
|
||||
-- I want the normal readline mappings rather than scrolling
|
||||
["<C-u>"] = false,
|
||||
}
|
||||
}
|
||||
},
|
||||
extensions = {
|
||||
fzf = {
|
||||
fuzzy = true,
|
||||
override_generic_sorter = true,
|
||||
override_file_sorter = true,
|
||||
case_mode = "smart_case",
|
||||
},
|
||||
},
|
||||
})
|
||||
|
||||
telescope.load_extension("fzf")
|
||||
telescope.load_extension("lsp_handlers")
|
||||
Loading…
Add table
Add a link
Reference in a new issue