Skip to content

Instantly share code, notes, and snippets.

@mkohlhaas
Created September 26, 2024 21:04
Show Gist options
  • Save mkohlhaas/a028aeac7de80585e0c6dc6bbfea37ca to your computer and use it in GitHub Desktop.
Save mkohlhaas/a028aeac7de80585e0c6dc6bbfea37ca to your computer and use it in GitHub Desktop.
Mappings AstroNvim
-- ~/.config/nvim/lua/plugins/mappings.lua
return {
{
"AstroNvim/astrocore",
---@type AstroCoreOpts
opts = {
mappings = {
n = {
["j"] = { "jzz" },
["k"] = { "kzz" },
["n"] = { "nzz" },
["N"] = { "Nzz" },
["G"] = { "Gzz" },
},
},
},
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment