about summary refs log tree commit diff
path: root/fnl/nvrc/options.fnl
diff options
context:
space:
mode:
authorsefidel <contact@sefidel.net>2023-03-02 23:59:27 +0900
committersefidel <contact@sefidel.net>2023-03-02 23:59:27 +0900
commitc37645f2e526c3af44b77be88319698da77268b7 (patch)
tree7349e6800158d2d6d9cf3852ba2105448f80206b /fnl/nvrc/options.fnl
parent87ae308562d4318f6f9e754b763ec4ee6f5aed02 (diff)
downloadnvimrc-c37645f2e526c3af44b77be88319698da77268b7.tar.gz
nvimrc-c37645f2e526c3af44b77be88319698da77268b7.zip
feat(options): set default indentation to 4 spaces
Diffstat (limited to 'fnl/nvrc/options.fnl')
-rw-r--r--fnl/nvrc/options.fnl4
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 "+"})