reworked nvim config files

This commit is contained in:
stev 2022-10-15 15:26:14 +02:00
parent 038a0d6940
commit b76ed824de
6 changed files with 202 additions and 203 deletions

View file

@ -0,0 +1,10 @@
--------------
-- mappings --
--------------
local map = vim.api.nvim_set_keymap
vim.g.mapleader = ' '
map('n', '<Space>', '', {})
map('n', '<Leader>n', '<cmd>:bNext<CR>', {})
map('n', '<Leader>p', '<cmd>:bprevious<CR>', {})
map('n', '<Leader>h', '<cmd>:nohlsearch<CR>', {})