Dotfiles/.config/nvim/lua/core/keymap.lua

6 lines
115 B
Lua
Raw Normal View History

2024-05-13 18:43:31 +00:00
vim.g.mapleader = " "
2024-06-02 17:11:54 +00:00
--[[ Indentation ]]
vim.keymap.set("n", "<Tab>", ">>")
vim.keymap.set("n", "<S-Tab>", "<<")