reworked nvim config files
This commit is contained in:
parent
038a0d6940
commit
b76ed824de
6 changed files with 202 additions and 203 deletions
10
.config/nvim/lua/core/mappings.lua
Normal file
10
.config/nvim/lua/core/mappings.lua
Normal 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>', {})
|
Loading…
Add table
Add a link
Reference in a new issue