|
|
|
@ -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
|
|
|
|
|