Two patterns from Bill Venners, I think both are heavily used in ScalaTest:
Stackable Trait (similar in structure to the decorator pattern, except it involves decoration for the purpose of class composition instead of object composition):
http://www.artima.com/scalazine/articles/stackable_trait_pattern.html
Selfless Trait (allows library designers to provide services that their clients can access either through mixins or imports):
http://www.artima.com/scalazine/articles/selfless_trait_pattern.html
Type safe builder:
http://blog.rafaelferreira.net/2008/07/type-safe-builder-pattern-in-scala.html
Independently Extensible Solutions to the Expression Problem - just like the "Scalable Component Abstraction" it's not a pattern catalog, but also deals with similar problems (e.g. the Visitor pattern)
http://www.scala-lang.org/docu/files/IC_TECH_REPORT_200433.pdf
Deprecating the Observer Pattern - an alternative to the Observer
http://infoscience.epfl.ch/record/148043/files/DeprecatingObserversTR2010.pdf
We can also consider the scala emulation of Haskell type classes a design pattern. First description (that I could find at least) is in
Poor Man's Type Classes
http://lampwww.epfl.ch/~odersky/talks/wg2.8-boston06.pdf
Quite some blog entries are also available with this topic.
And I think I'm not completely wrong if I also mention the various monads, you can find a lot of resources dealing with them.