My Neovim Plugins

List of my plugins for the neovim text editor. ...

bepo.nvim

 cljoly/bepo.nvim Mappings for the bepo layout in Lua, inspired by vim-bepo It aims to be faster (takes only 0.4ms at startup on my machine, while vim-bepo requires 1.6ms) and more customizable (see :help bepo.nvim-cherry-pick) Example Use You should call the extension early in your config, so that you can erase mappings later (or with later extensions) more easily. require("bepo").setup() You can also apply only some mapping groups: require("bepo").movement() require("bepo").tabs() require("bepo")....