Created
September 26, 2024 21:04
-
-
Save mkohlhaas/a028aeac7de80585e0c6dc6bbfea37ca to your computer and use it in GitHub Desktop.
Mappings AstroNvim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- ~/.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