A have certain configuration in the folder .config/nvim/after that is not being recognized by oni. Usually a have some extra syntax highlighting in this folder. Is there any reason why oni does not take into account this folder? How can I make use of oni taking into account this additional configuration in the folder after?
My config.js is as follows:
const activate = (oni) => {
console.log("config activated")
oni.input.bind("<c-enter>", () => console.log("Control+Enter was pressed"))
}
const deactivate = () => {
console.log("config deactivated")
}
module.exports = {
activate,
deactivate,
"oni.useDefaultConfig": false, // default is true
"oni.loadInitVim": true,
"statusbar.enabled": true, // yes by default
"editor.fontSize": "16px",
}
Looks like we missed a comma when setting the runtime paths - here's what mine looked like:

Looks like a quick fix - created PR #935
Fixed by #935 (will be in Wednesday's 0.2.17 release).
Great, thank you so much for the fix.
FYI - 0.2.17 is out now