diff options
author | sefidel <contact@sefidel.net> | 2023-03-02 23:59:27 +0900 |
---|---|---|
committer | sefidel <contact@sefidel.net> | 2023-03-02 23:59:27 +0900 |
commit | c37645f2e526c3af44b77be88319698da77268b7 (patch) | |
tree | 7349e6800158d2d6d9cf3852ba2105448f80206b /fnl/nvrc | |
parent | 87ae308562d4318f6f9e754b763ec4ee6f5aed02 (diff) | |
download | nvimrc-c37645f2e526c3af44b77be88319698da77268b7.tar.gz nvimrc-c37645f2e526c3af44b77be88319698da77268b7.zip |
feat(options): set default indentation to 4 spaces
Diffstat (limited to 'fnl/nvrc')
-rw-r--r-- | fnl/nvrc/options.fnl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fnl/nvrc/options.fnl b/fnl/nvrc/options.fnl index e61d179..b730588 100644 --- a/fnl/nvrc/options.fnl +++ b/fnl/nvrc/options.fnl @@ -19,8 +19,8 @@ ; Style (set! expandtab) -(set! tabstop 2) -(set! shiftwidth 2) +(set! tabstop 4) +(set! shiftwidth 4) (set! smartindent) (set! list) (set! listchars {:tab ">-" :extends ">" :precedes "<" :trail "-" :nbsp "+"}) |