Rules defined for filenames with a leading . are not loaded up by the plugin.
My .editorconfig:
[*]
indent_size = 2
tab_width = 2
[.vimrc]
indent_size = 4
tab_width = 4
When I edit my .vimrc file, and run verbose set shiftwidth I get the following:
shiftwidth=2
Last set from ~/my-env/dotfiles/.vim/pack/bundle/start/vim-editorconfig/autoload/editorconfig/indent_size.vim line 16
With the following .editorconfig instead (no more .):
[*]
indent_size = 2
tab_width = 2
[vimrc]
indent_size = 4
tab_width = 4
settings are loaded up just fine:
shiftwidth=4
Last set from ~/my-env/dotfiles/.vim/pack/bundle/start/vim-editorconfig/autoload/editorconfig/indent_size.vim line 16
Is this expected?
Rules defined for filenames with a leading
.are not loaded up by the plugin.My .editorconfig:
When I edit my .vimrc file, and run
verbose set shiftwidthI get the following:With the following .editorconfig instead (no more
.):settings are loaded up just fine:
Is this expected?