diff options
Diffstat (limited to 'lua')
-rw-r--r-- | lua/core/telescope.lua | 4 | ||||
-rw-r--r-- | lua/plugin-loader.lua | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/lua/core/telescope.lua b/lua/core/telescope.lua index f4d154b0..f8862260 100644 --- a/lua/core/telescope.lua +++ b/lua/core/telescope.lua @@ -60,8 +60,8 @@ M.config = function() -- ["<CR>"] = actions.select_default + actions.center + my_cool_custom_action, }, n = { - ["<C-j>"] = actions.move_selection_next, - ["<C-k>"] = actions.move_selection_previous, + ["<C-n>"] = actions.move_selection_next, + ["<C-p>"] = actions.move_selection_previous, ["<C-q>"] = actions.smart_send_to_qflist + actions.open_qflist, -- ["<c-t>"] = trouble.open_with_trouble, -- ["<C-i>"] = my_cool_custom_action, diff --git a/lua/plugin-loader.lua b/lua/plugin-loader.lua index b7e68a1e..e238b193 100644 --- a/lua/plugin-loader.lua +++ b/lua/plugin-loader.lua @@ -23,7 +23,7 @@ function plugin_loader:init() git = { clone_timeout = 300 }, display = { open_fn = function() - return util.float { border = "single" } + return util.float { border = "rounded" } end, }, } |