mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-10 20:11:55 +01:00
21 lines
675 B
Lua
21 lines
675 B
Lua
local map = vim.api.nvim_set_keymap
|
|
|
|
-- Getting stuck in ~~vim~~ terminal
|
|
map("t", "<Esc>", "<C-\\><C-n>", {})
|
|
|
|
-- telescope
|
|
map("n", "ff", "<cmd>Telescope find_files<cr>", { silent = true })
|
|
map("n", "fg", "<cmd>Telescope live_grep<cr>", { silent = true })
|
|
|
|
-- Quick cursor movement
|
|
map("n", "<C-Down>", "5j", { noremap = true })
|
|
map("n", "<C-Up>", "5k", { noremap = true })
|
|
|
|
-- Quick pasting/yoinking to system register
|
|
map("n", "+y", '"+y', { noremap = true })
|
|
map("n", "+p", '"+p', { noremap = true })
|
|
map("n", "+d", '"+d', { noremap = true })
|
|
|
|
map("n", "*y", '"*y', { noremap = true })
|
|
map("n", "*p", '"*p', { noremap = true })
|
|
map("n", "*d", '"*d', { noremap = true })
|