0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

vimでインデントの設定がpythonのときに反映されないときの対処法

Posted at

インデント、タブを半角2文字にするため、.vimrcに以下のように記述した。

set tabstop=2
set softtabstop=2
set shiftwidth=2

しかし、pythonのときだけ反映されず4文字になる。どうやらpythonはデフォルトで何かあるようで、それを無効にするため(?)に以下を.vimrcに追加すると、無事反映されて2文字になった。

let g:python_recommended_style = 0
0
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?