summaryrefslogtreecommitdiff
path: root/pkgs/custom-neovim/config/lua/plugins/mini/files.lua
blob: 03a403a6b332ce1839d038a73ef5a14c61765aa8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require("mini.files").setup {
  mappings = {
    close       = '<esc>',
    go_in       = 'L',
    go_in_plus  = '<c-l>',
    go_out      = 'H',
    go_out_plus = '<c-h>',
    mark_goto   = "'",
    mark_set    = 'm',
    reset       = '<leader>',
    reveal_cwd  = '@',
    show_help   = 'g?',
    synchronize = '=',
    trim_left   = '<',
    trim_right  = '>',
  },
  windows = {
    preview = true,
  },
}