From 742a6279294d5b81acb81a317c254f7867c50c6a Mon Sep 17 00:00:00 2001 From: Mark Valor Date: Wed, 25 Mar 2020 10:18:13 -0700 Subject: [PATCH] set autoindent on in .vimrc --- .vimrc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.vimrc b/.vimrc index 3413b29..6e313c8 100644 --- a/.vimrc +++ b/.vimrc @@ -15,8 +15,6 @@ " have made, as well as sanely reset options when re-sourcing .vimrc set nocompatible -" Put plugin stuff directly below this line - " Attempt to determine the type of a file based on its name and possibly its " contents. Use this to allow intelligent auto-indenting for each filetype, " and for plugins that are filetype specific. @@ -99,7 +97,7 @@ set backspace=indent,eol,start " When opening a new line and no filetype-specific indenting is enabled, keep " the same indent as the line you're currently on. Useful for READMEs, etc. -set autoindent +"set autoindent " Stop certain movements from always going to the first character of a line. " While this behaviour deviates from that of Vi, it does what most users