Quantcast
Channel: Vimタグが付けられた新着記事 - Qiita
Viewing all articles
Browse latest Browse all 5608

Laravelで.vimrc.localのnoexpandtabが効かなかった

$
0
0

先に結論

Laravelインストール時に設置されていたeditorconfigが効いているだけでした。

経緯

Laravelでbladeファイルをタブインデントにしたかったので、以下の.vimrc.localを設置したが効かなかった。

.vimrc.local
if &filetype == "blade"
    set noexpandtab
endif

原因の確認

vim上で以下のコマンドを叩いて、インデントの設定で何が優先されているのかを確認。

:verboseset expandtab?
noexpandtab
        最後にセットしたスクリプト:~/.vim/bundle/editorconfig-vim/plugin/editorconfig.vim545

Laravelのプロジェクトルートディレクトリにある.editorconfigが優先されていた。

.vimrc.localをやめて.editorconfigに以下を追記することで解決。

.editorconfig
[*.blade.php]
indent_style = tab
indent_size = 3

Viewing all articles
Browse latest Browse all 5608

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>