mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 08:43:00 +00:00
Minor fixes
This commit is contained in:
parent
c5292ac9de
commit
f42ac2a6a3
17 changed files with 191 additions and 50 deletions
21
tools/nvim/lua/plugins/mod/telescope.lua
Normal file
21
tools/nvim/lua/plugins/mod/telescope.lua
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
return {
|
||||
"nvim-telescope/telescope.nvim",
|
||||
config = function ()
|
||||
require("telescope").setup {
|
||||
defaults = {
|
||||
mappings = {
|
||||
n = {
|
||||
["n"] = "move_selection_next",
|
||||
["e"] = "move_selection_previous",
|
||||
["w"] = "preview_scrolling_up",
|
||||
["r"] = "preview_scrolling_down",
|
||||
["a"] = "preview_scrolling_left",
|
||||
["s"] = "preview_scrolling_right",
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
end,
|
||||
dependencies = { "nvim-lua/plenary.nvim" },
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue