1
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(vi)の設定(Linux, Unix, macOS)

Last updated at Posted at 2021-02-04

vim(vi)の設定の覚書き。
タブキー押下でスペース4個が入力されます。
タブ文字は使いません。

.vimrc

" シンタックスハイライト 有効
syntax enable

" 行番号表示
set number

" tab文字を使わず常に半角スペース
set expandtab
" 4個の半角スペースで1個のTabとカウント
set tabstop=4
" 改行時などのインデント=半角スペース4個分
set shiftwidth=4

" 改行時に自動インデント(字下げ)
set autoindent


1
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
1
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?