removed keymap for 'q' and removed trouble plugin

This commit is contained in:
pika 2024-06-26 10:58:30 +02:00
parent 4292c2f215
commit 0894d0d1d7
2 changed files with 17 additions and 15 deletions

View file

@ -1,9 +1,11 @@
vim.g.mapleader = " "
-- ─< lua/keymaps.lua >─────────────────────────────────────────────────────────────────
-- local nomap = vim.keymap.del
-- nomap('i', '<C-k>')
-- nomap('n', '<C-k>')
local nomap = vim.keymap.set
nomap("i", "<C-k>", "")
nomap("n", "<C-k>", "")
nomap("n", "q", "")
nomap("v", "q", "")
local map = vim.keymap.set