dotfiles/private_dot_config/nvim/lua/mapping/maintenance.lua

17 lines
504 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 .. '<CR>',
{
desc = 'try to reload current configuration'
}
)