nvim lazy plugin management part 1

This commit is contained in:
2025-07-15 15:41:50 +05:00
parent 3812064349
commit 0d1b98f65e
30 changed files with 637 additions and 935 deletions

View File

@ -1,14 +1,11 @@
vim.g.mapleader = " "
vim.g.maplocalleader = " "
local opts = { noremap = true, silent = true }
local term_opts = { silent = true }
local keymap = vim.api.nvim_set_keymap
keymap("", "<Space>", "<Nop>", opts)
vim.g.mapleader = " "
vim.g.maplocalleader = " "
--window navigation
keymap("n", "<C-h>", "<C-w>h", opts)
keymap("n", "<C-j>", "<C-w>j", opts)