[bim] Enable indent by default

This commit is contained in:
K. Lange 2018-08-20 13:05:19 +09:00
parent cf21613df0
commit cc07251802
1 changed files with 1 additions and 0 deletions

View File

@ -1316,6 +1316,7 @@ void setup_buffer(buffer_t * env) {
env->line_avail = 8; /* Default line buffer capacity */
env->tabs = 1; /* Tabs by default */
env->tabstop = 4; /* Tab stop width */
env->indent = 1; /* Auto-indent by default */
/* Allocate line buffer */
env->lines = malloc(sizeof(line_t *) * env->line_avail);