chore(zed): Adjust keymaps to match nvim

Probably gonna put this on halt for now as I notice zed doesn't have
TODO/FIXME highlighting yet.
This commit is contained in:
Ahmad Ansori Palembani 2025-05-29 13:44:28 +07:00
parent 941b30413c
commit 0a95ccd9a5
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
3 changed files with 30 additions and 7 deletions

View file

@ -7,9 +7,9 @@ map("n", "<C-u>", "U")
map("n", "U", "<C-r>")
-- Yank and Put
map("n", "<C-y>", '"+y')
map("nv", "<C-y>", '"+y')
map("n", "<C-p>", '"+p')
map("n", "<C-Y>", '"+y')
map("nv", "<C-Y>", '"+y')
map("n", "<C-P>", '"+p')
-- Comment a line like how it is on VSC (using vim-commentary)