summaryrefslogtreecommitdiff
path: root/dot-config/nvim/lua/plugins/hardtime.lua
blob: 8e8078a7b8588f1594adcde5a5dcbf58478e8dad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
-- https://github.com/m4xshen/hardtime.nvim
return {
  "m4xshen/hardtime.nvim",
  lazy = false,
  dependencies = { "MunifTanjim/nui.nvim" },
  opts = {
    -- re-enable <up> <down> <left> <right>
    -- for use with mutlicursor.nvim
    disabled_keys = {
      ["<Up>"] = false,
      ["<Down>"] = false,
      ["<Left>"] = false,
      ["<Right>"] = false,
    },
  },
}