From 77098deb6aa1cce5e765f62e6342ee91f0a13e37 Mon Sep 17 00:00:00 2001 From: Sean Buckley Date: Fri, 18 Sep 2020 14:53:35 -0400 Subject: [PATCH] vim: smartindent --- modules/cli.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cli.nix b/modules/cli.nix index a40af39..38ad0d4 100644 --- a/modules/cli.nix +++ b/modules/cli.nix @@ -12,7 +12,7 @@ vimrcConfig.customRC='' syntax enable set nowrap ruler scrolloff=9 backspace=start,indent - set autoindent expandtab tabstop=4 shiftwidth=4 + set autoindent smartindent expandtab tabstop=4 shiftwidth=4 ''; })