2 files changed,
3 insertions(+),
2 deletions(-)
Author:
Smirnov Oleksandr
ss2316544@gmail.com
Committed at:
2023-11-12 18:31:09 +0200
Parent:
1284d3c
jump to
| M | lua/core/keymaps.lua |
| M | lua/plugins/telescope.lua |
M
lua/core/keymaps.lua
@@ -7,6 +7,8 @@ map("i", "jk", "<esc>")
map("n", "<leader>h", "<cmd>nohlsearch<cr>") map("n", "<C-d>", "<C-d>zz") map("n", "<C-u>", "<C-u>zz") +map("x", "<leader>p", [["_dP]]) +map("n", "Q", "<nop>") -- Q is the worth thing ever -- quickfix map("n", "<localleader>j", "<cmd>cnext<cr>")@@ -33,7 +35,7 @@ map("n", "<C-Down>", "<cmd>resize +2<cr>")
map("n", "<C-Up", "<cmd>resize -1<cr>") map("n", "<C-Right>", "<cmd>vertical resize +2<CR>") --- move strings +-- move lines map("v", "K", ":move '<-2<CR>gv-gv") map("v", "J", ":move '>+1<CR>gv-gv") map("n", "<A-j>", ":m .+1<CR>==")
M
lua/plugins/telescope.lua
@@ -7,7 +7,6 @@ { "<leader>f", "<cmd>Telescope find_files<cr>" },
{ "<leader>b", "<cmd>Telescope buffers<cr>" }, { "<leader>sr", "<cmd>Telescope oldfiles<cr>" }, { "<leader>st", "<cmd>Telescope live_grep<cr>" }, - { "<leader>sp", "<cmd>Telescope projects<cr>" }, }, config = function() local telescope = require "telescope"