On Sat, Jun 13, 2020 at 8:06 AM Ɓukasz Posadowski <mail@lukaszposadowski.pl> wrote:
Sat, 13 Jun 2020 07:21:54 -0500
Richard Shaw <hobbes1069@gmail.com>:

> Also, it tries to indent for me in some code type files but it's
> using tabs instead of spaces and 8 spaces instead of 4. One would
> think in 2020 that software could "intuit" what the prevailing style
> is.

Are those yaml files, by some accident?

Mostly C/C++ and CMake files. I *THINK* I got it fixed by creating a ~/.vimrc file :

$ cat ~/.vimrc
:set tabstop=4
:set expandtab
:set shiftwidth=4
:set autoindent
:set smartindent
:set cindent

Thanks,
Richard