Skip to content

The idea of this plugin is just to provide the ability to setup all of your keybindings using a lua plugin

License

Notifications You must be signed in to change notification settings

codescovery/lazy-remap.nvim

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

lazy-remap.nvim

The idea of this plugin is just to provide the ability to setup all of your keybindings using a single function call. This is useful if you want to have all of your keybindings in one place, and not scattered throughout your config.

The plugin itself doesn't provide any keybindings or functionality.

Prerequisites

Instructions

  • Create a file inside your plugins directory with the following content:
local keymap = vim.keymap
return {
    "codescovery/lazy-remap.nvim",
    event = "VeryLazy",
    name = "remap",
    config = function()
        -- Add your keybindings here
    end
}
  • Add the following to your init.lua file
    vim.g.mapleader = -- Your leader key
  • Add your keybindings to the config function in the file you created in step 1.
  • Restart Neovim or run :LazyInstall to install the plugin.
  • That's it! Your keybindings should now be working.

About

The idea of this plugin is just to provide the ability to setup all of your keybindings using a lua plugin

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages