|
@ -1,9 +1,9 @@ |
|
|
local function map(mode, lhs, rhs, opts) |
|
|
local function map(mode, lhs, rhs, opts) |
|
|
local options = { noremap = true } |
|
|
|
|
|
if opts then |
|
|
|
|
|
options = vim.tbl_extend("force", options, opts) |
|
|
|
|
|
end |
|
|
|
|
|
vim.api.nvim_set_keymap(mode, lhs, rhs, options) |
|
|
|
|
|
|
|
|
local options = { noremap = true } |
|
|
|
|
|
if opts then |
|
|
|
|
|
options = vim.tbl_extend("force", options, opts) |
|
|
|
|
|
end |
|
|
|
|
|
vim.api.nvim_set_keymap(mode, lhs, rhs, options) |
|
|
end |
|
|
end |
|
|
|
|
|
|
|
|
vim.g.mapleader = " " |
|
|
vim.g.mapleader = " " |
|
@ -24,5 +24,3 @@ map("i", "<A-u>", "ū") |
|
|
|
|
|
|
|
|
map("n", "<F12>", ":w|:!texbld run compile") |
|
|
map("n", "<F12>", ":w|:!texbld run compile") |
|
|
map("n", "<F5>", ":w|:!./test.sh") |
|
|
map("n", "<F5>", ":w|:!./test.sh") |
|
|
|
|
|
|
|
|
vim.keymap.set("n", "<leader>pv", vim.cmd.Ex) |
|
|
|