dotfiles/private_dot_config/nvim/lua/mapping/maintenance.lua
2024-05-25 00:10:39 +02:00

17 lines
528 B
Lua

vim.keymap.set(
'n' ,
'<Leader>ie' ,
':tabedit ' .. require('variables.core').config .. '<CR>',
{
desc = 'edit current configuration in a new tab'
}
)
vim.keymap.set(
'n' ,
'<Leader>is' ,
':source ' .. require('variables.core').config .. 'init.lua<CR>',
{
desc = 'try to reload current configuration'
}
)