diff options
Diffstat (limited to 'lua/core')
-rw-r--r-- | lua/core/maps.lua | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lua/core/maps.lua b/lua/core/maps.lua index 14f05f1..61617cf 100644 --- a/lua/core/maps.lua +++ b/lua/core/maps.lua @@ -1,6 +1,8 @@ local maps = { n = { - ["<Esc>"] = { "<cmd> noh <CR>", "Clear highlights" }, + ["<Esc>"] = { "<CMD> noh <CR>", "Clear highlights" }, + ["[b"] = { "<CMD> bprev <CR>", "Previous buffer" }, + ["]b"] = { "<CMD> bnext <CR>", "Next buffer" }, ["<Leader>cc"] = { function() if vim.api.nvim_get_option_value("colorcolumn", {}) == "" then |