" You should have received a copy of the GNU General Public License
 " along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
-setlocal textwidth=72
+syntax on
+set encoding=utf-8
+set nocompatible
+
 setlocal nocursorline
-setlocal foldmethod=indent
-setlocal foldcolumn=0
 setlocal colorcolumn=0
-setlocal conceallevel=0
 setlocal norelativenumber
 setlocal laststatus=0
+setlocal scrolloff=2
+
+setlocal shiftwidth=4
+setlocal foldmethod=indent
+setlocal foldnestmax=5
+setlocal foldenable
+setlocal foldcolumn=0
+setlocal foldlevel=0
 
 highlight clear ExtraWhitespace
 syntax region pEmph matchgroup=Ignore start="|\S"rs=s+1 end="\S|"re=e-1 concealends