added possibity of config overrides to neovim,
will allow for local config to override global, laying groundwork for unifying personal and work config.
This commit is contained in:
parent
b8b28a29fd
commit
ce99161959
|
@ -169,3 +169,6 @@ Floatingterm = Terminal:new({
|
||||||
})
|
})
|
||||||
|
|
||||||
vim.api.nvim_set_keymap("n", "<leader>s", ':lua Floatingterm:toggle()<CR>', optsWithDesc("open scratch terminal"))
|
vim.api.nvim_set_keymap("n", "<leader>s", ':lua Floatingterm:toggle()<CR>', optsWithDesc("open scratch terminal"))
|
||||||
|
|
||||||
|
-- load overrides from other stow packages.
|
||||||
|
vim.cmd('runtime! override/**/*.lua')
|
||||||
|
|
Loading…
Reference in a new issue