I had to add an autocmd that handles it (this is neovim but it is the same idea): ```lua vim.api.nvim_create_autocmd("BufEnter", { callback = function() vim.cmd("set omnifunc=SlimvOmniComplete") end, pattern = "REPL" }) ```