comments
parent
2e96462fb2
commit
d5610e3ca5
5
init.lua
5
init.lua
|
@ -44,8 +44,11 @@ vim.cmd "colorscheme lunaperche"
|
|||
|
||||
-- Remappings
|
||||
local map_list = {
|
||||
['w|'] = ':vsplit', ['w-'] = ':split', -- w| / w- to create vertical and horizontal splits
|
||||
--- w| / w- to create vertical and horizontal splits
|
||||
['w|'] = ':vsplit', ['w-'] = ':split',
|
||||
--- gi / ge to move between buffers
|
||||
['gi'] = ':bprevious', ['ge'] = ':bnext',
|
||||
--- W to save, ^t to create a tab
|
||||
['W'] = ':w', ['<C-t>'] = ':tabnew',
|
||||
}
|
||||
for key, binding in pairs(map_list) do
|
||||
|
|
Loading…
Reference in New Issue