From a89c8b0d11b2070f9739caf70cdbff8a3a70d080 Mon Sep 17 00:00:00 2001 From: ElnuDev Date: Fri, 7 Oct 2022 17:39:05 -0700 Subject: [PATCH] Fix typos in .vimrc configuration --- vim.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vim.nix b/vim.nix index 9c553de..699dd93 100644 --- a/vim.nix +++ b/vim.nix @@ -5,11 +5,11 @@ enable = true; # Temporary configuration for editing Nix files extraConfig = '' - set syntax + syntax on set autoindent set expandtab set tabstop=2 - set shiftwidth=2; + set shiftwidth=2 ''; }; }