1
0
Fork 0
mirror of https://github.com/pnx/dotfiles synced 2026-06-16 03:14:55 +02:00

touching the nvim again

This commit is contained in:
Henrik Hautakoski 2024-05-14 11:37:21 +02:00
parent c05ca4cb35
commit bcb84e54eb
11 changed files with 120 additions and 47 deletions

View file

@ -1,4 +1,23 @@
return {
default_file_explorer = true,
prompt_save_on_select_new_entry = false,
keymaps = {
["g?"] = "actions.show_help",
["<CR>"] = "actions.select",
["<C-v>"] = "actions.select_vsplit",
["<C-p>"] = "actions.preview",
["<C-c>"] = "actions.close",
["<C-l>"] = "actions.refresh",
["-"] = "actions.parent",
["_"] = "actions.open_cwd",
["`"] = "actions.cd",
["~"] = "actions.tcd",
["gs"] = "actions.change_sort",
["gx"] = "actions.open_external",
["g."] = "actions.toggle_hidden",
["g\\"] = "actions.toggle_trash",
},
use_default_keymaps = false,
float = {
-- Padding around the floating window
padding = 2,
@ -9,4 +28,10 @@ return {
winblend = 0,
},
},
ssh = {
border = "single",
},
keymaps_help = {
border = "single",
}
}