Customizable indentation



  • #Instead of automatically indenting 4 spaces, make 2 spaces an option.

    if (thing) {
        do
    }
    

    to

    if (thing) {
      do
    }
    


  • I think the best solution to indentation preferences is automatic formatters. I'd love a indent my code for me button, much more than the ability to customize with size indent it inserts.