chore(nvim): only black hole with d normal mode

I usually paste neovim with d
main
sudo pacman -Syu 2023-10-11 16:42:42 +07:00
parent 074719ff5d
commit 54b7369525
2 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ vim.keymap.set("n", "{", "{zz")
vim.keymap.set("n", "}", "}zz")
-- Unnamed register aka black hole to not push to register aka trigger yank
vim.keymap.set({ "n", "v" }, "d", '"_d')
vim.keymap.set("n", "d", '"_d')
vim.keymap.set({ "n", "v" }, "D", '"_D')
vim.keymap.set({ "n", "v" }, "c", '"_c')
vim.keymap.set({ "n", "v" }, "x", '"_x')

View File

@ -3,7 +3,7 @@ local act = wezterm.action
return {
font = wezterm.font({
family = "Iosevka Term SS08",
family = "Fantasque Sans Mono",
}),
font_size = 16.0,
line_height = 1.2,