diff --git a/nvim/lazy-lock.json b/nvim/lazy-lock.json index d340d72..ae2784d 100644 --- a/nvim/lazy-lock.json +++ b/nvim/lazy-lock.json @@ -41,6 +41,7 @@ "nvim-navic": { "branch": "master", "commit": "8649f694d3e76ee10c19255dece6411c29206a54" }, "nvim-nio": { "branch": "master", "commit": "7969e0a8ffabdf210edd7978ec954a47a737bbcc" }, "nvim-notify": { "branch": "master", "commit": "d333b6f167900f6d9d42a59005d82919830626bf" }, + "nvim-recorder": { "branch": "main", "commit": "5b85ef09cf12361fc1fc956caeedb94e388f0109" }, "nvim-treesitter": { "branch": "master", "commit": "3e535e826da265748b875b18dbfb361bd1a1701c" }, "nvim-ts-autotag": { "branch": "main", "commit": "ddfccbf0df1b9349c2b9e9b17f4afa8f9b6c1ed1" }, "nvim-ufo": { "branch": "main", "commit": "aa2e676af592b4e99c105d80d6eafd1afc215d99" }, diff --git a/nvim/lua/themystery/plugins/recorder.lua b/nvim/lua/themystery/plugins/recorder.lua new file mode 100644 index 0000000..a130cbb --- /dev/null +++ b/nvim/lua/themystery/plugins/recorder.lua @@ -0,0 +1,5 @@ +return { + "chrisgrieser/nvim-recorder", + dependencies = "rcarriga/nvim-notify", -- optional + opts = {}, -- required even with default settings, since it calls `setup()` +} diff --git a/nvim/lua/themystery/remap.lua b/nvim/lua/themystery/remap.lua index 12ac4bc..1096beb 100644 --- a/nvim/lua/themystery/remap.lua +++ b/nvim/lua/themystery/remap.lua @@ -50,8 +50,8 @@ vim.keymap.set("n", "bd", "bd") vim.keymap.set("n", "bda", ":%bd|e#") -- macro recording remaps -vim.keymap.set("n", "q", "qq") -vim.keymap.set("n", "", "@q") +-- vim.keymap.set("n", "q", "qq") +-- vim.keymap.set("n", "", "@q") -- comments remaps vim.keymap.set("v", "", "gc", { remap = true });