Removed autoindent completely in .vimrc.

This commit is contained in:
Johannes Findeisen 2025-03-04 01:45:51 +01:00
commit 177e6c190e

9
.vimrc
View file

@ -57,8 +57,13 @@ set tabstop=4
set shiftwidth=4 set shiftwidth=4
set expandtab set expandtab
" set number " set number
filetype indent on " filetype indent on
set autoindent " set autoindent
filetype indent off
set noautoindent
set nocindent
set nosmartindent
" Better command-line completion " Better command-line completion
set wildmenu set wildmenu