Every time I add a selector in CSS and I press Enter to define the properties it ends up like this:

#selector {
        property: value;
}

(8-space tabs)

How can I configure Vim to make it like this:

#selector {
    property: value;
}

(4-space tabs)

8 Answers
8

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *