[nvim] gitsigns

This commit is contained in:
Dmitry Chumak
2025-03-13 19:48:19 +03:00
parent 63250216bb
commit 5b562a12da
6 changed files with 45 additions and 0 deletions

View File

@@ -1,3 +1,5 @@
IsYandex = Contains({"i113855042", "dmchumak-dev.sas.yp-c.yandex.net"}, vim.fn.hostname())
vim.g.mapleader = ' '
vim.g.maplocalleader = ' '
@@ -28,3 +30,7 @@ vim.keymap.set("n", "<C-h>", "<C-w>h")
vim.keymap.set("n", "<C-j>", "<C-w>j")
vim.keymap.set("n", "<C-k>", "<C-w>k")
vim.keymap.set("n", "<C-l>", "<C-w>l")
-- Keymap to copy to system buffer
vim.keymap.set('n','<leader>y','"+yy')
vim.keymap.set('v','<leader>y','"+y')