mirror of
https://github.com/runyanjake/dotfiles.git
synced 2025-10-04 13:57:28 -07:00
7 lines
242 B
Lua
7 lines
242 B
Lua
-- set <LEADER> key for nvim (effectively layer key for shortcuts in nvim)
|
|
vim.g.mapleader = ","
|
|
|
|
-- map leader+y to copy to system clipboard in normal mode
|
|
vim.keymap.set({ "n", "v" }, "<Leader>y", '"+y', { noremap = true, silent = true })
|
|
|