This commit is contained in:
ZaneFerns360 2024-04-28 11:39:28 +05:30
parent 45bb16f283
commit 33094f882b
3 changed files with 33 additions and 28 deletions

View file

@ -4,12 +4,14 @@ local dash = {
event = 'VimEnter',
opts = function()
local logo = [[
Z
Z
z
z
]]
logo = string.rep('\n', 8) .. logo .. '\n\n'

View file

@ -1,5 +1,8 @@
local keybinds = {
vim.api.nvim_set_keymap('n', ';', ':', { noremap = true }),
vim.cmd 'command! QQ q!',
vim.cmd 'command! Q q',
vim.cmd 'command! WQ wq',
}
return keybinds