用 neovim 編輯 script 的時候突然發現縮排不是習慣的那樣了,
想說 vimrc 是不是不小心動到,結果又沒有啊
後來發現只要不在那個目錄下就沒問題,原來 neovim 0.9
之後會看 .editorconfig
是可以關掉啦,不過考慮到除了 shell script 外其他照 .editorconfig 走
好像也不錯,就來研究一下要怎麼只關 .sh
https://stackoverflow.com/questions/30310396
用這篇提到的方法加上這段,看起來是會動的
[*.sh]
charset = unset
end_of_line = unset
insert_final_newline = unset
trim_trailing_whitespace = unset
indent_style = unset