fix(move): fix setup of move
This commit is contained in:
@@ -1,6 +1,12 @@
|
||||
-- https://github.com/fedepujol/move.nvim
|
||||
|
||||
local function setup()
|
||||
require("move").setup({
|
||||
char = {
|
||||
enable = true,
|
||||
},
|
||||
})
|
||||
|
||||
local opts = { noremap = true, silent = true, }
|
||||
vim.keymap.set("n", "<A-j>", function () vim.cmd.MoveLine(1) end, opts)
|
||||
vim.keymap.set("n", "<A-k>", function () vim.cmd.MoveLine(-1) end, opts)
|
||||
|
||||
Reference in New Issue
Block a user