config: nvim: rewrite config in lua and use packer as plugin manager
This commit is contained in:
parent
07be5a4e7a
commit
6863d4c2eb
11 changed files with 174 additions and 197 deletions
5
config/nvim/lua/keybindings.lua
Normal file
5
config/nvim/lua/keybindings.lua
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
local map = require('utils').map -- import map
|
||||
|
||||
-- allow switching between buffers using tab and Shift-tab
|
||||
map('n', '<TAB>', ':bnext<CR>')
|
||||
map('n', '<S-TAB>', ':bprevious<CR>')
|
||||
Loading…
Add table
Add a link
Reference in a new issue