Eclipseでコーディングするときデフォルトだとテキスト整形が
class helloworld {
  public static void main(String args[]) {
    System.out.println("nullpo");
  }
}

ですが、これを

class helloworld
{
  public static void main(String args[])
  {
    System.out.println("helloworld");
  }
}
みたいな風に変更する事ってできますか?
あとエディタの強調表示などの変更はできないんでしょうか?
よろしくお願いします。