This commit is contained in:
Adam Stankiewicz
2020-12-29 19:44:40 +01:00
parent 73c5187177
commit 95d82fdb66
40 changed files with 528 additions and 348 deletions

View File

@@ -12,6 +12,16 @@ endif
let b:did_indent = 1
if !exists('g:crystal_indent_assignment_style')
" Possible values: 'variable', 'hanging'
let g:crystal_indent_assignment_style = 'hanging'
endif
if !exists('g:crystal_indent_block_style')
" Possible values: 'expression', 'do'
let g:crystal_indent_block_style = 'expression'
endif
setlocal nosmartindent
" Now, set up our indentation expression and keys that trigger it.