kickstart.nvim/lua/custom/plugins/keybindings.lua

9 lines
182 B
Lua
Raw Normal View History

2024-04-27 23:28:43 +05:30
local keybinds = {
vim.api.nvim_set_keymap('n', ';', ':', { noremap = true }),
2024-04-28 11:39:28 +05:30
vim.cmd 'command! QQ q!',
vim.cmd 'command! Q q',
vim.cmd 'command! WQ wq',
2024-04-27 23:28:43 +05:30
}
return keybinds