After following the recommendations in the following question's answers, I've been able to get Razor mostly working in FubuMVC.
Need razor view engine auto-complete to work in a class library?
However, the only way I can get Intellisense to work with the @model is to disable ReSharper's Intellisense. With R# 6, you can now specify limited R# Intellisense. Unfortunately, the only way to disable R# Intellisense for Razor is to disable the code in supported server pages; C# in my case. Doing so, also disables R# Intellisense for all C# files as well. That's definitely not ideal.
Currently, all ReSharper Intellisense is working in my Razor views as expected, except for the @model.
What does ReSharper need to be able to work properly with Razor views in FubuMVC? Am I just missing a reference, or should I create the web application as an ASP.NET MVC application instead of the recommended standard web application?