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 5 years have passed since last update.

Sublime Text 3 :インストール後に設定したこと

Posted at

Sublime Text 3 インストール後の設定

いつの間にかβ版じゃなくなっていたので満を持してインストール。
やっぱり設定が面倒なので、自分用にメモ。

パッケージコントローラーをインストール

パッケージ管理プラグイン:Package Control

パッケージインストール

上記のPackageControlプラグインから以下をインストール。

基本

  • IMESupport : 日本語入力をインライン化
  • EncodingHelper : エンコーディングの変換と表示
  • TrailingSpaces : 日本語の全角スペースの見える化用

他、PackageControlのパッケージはこちらにたくさんあります

デフォルト設定の変更

Preferences_Setting-User
{
	"default_line_ending": "unix",
	"draw_white_space": "all",
	"ignored_packages":
	[
		"Vintage"
	],
	"show_encoding": true,
	"show_line_endings": true,
	"translate_tabs_to_spaces": true,
}

Trailing Spaces の設定

正規表現に全角スペースを追加

Preferences_Package-Settings_Trailing-Spaces_Setting-User
{
    "trailing_spaces_regexp": "[ ]|[ \t]+",
    "trailing_spaces_highlight_color" : "comment",    // invalid|error|comment
}

設定後はSublimeTextを再起動しましょう。


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?