6
2

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.

emacs設定メモ(随時追加していく)

Posted at

;;; .~ とかのバックアップファイルを作らない
(setq make-backup-files nil)
;;; .#
とかのバックアップファイルを作らない
(setq auto-save-default nil)
;;; インデントを半角スペース4つに
(setq-default tab-width 4 indent-tabs-mode nil)
;;; カーソルを点滅
(blink-cursor-mode t)
;;; menu-bar を非表示
(menu-bar-mode 0)
;;; 拡張子 .ctp も php-mode で開く
(add-to-list 'auto-mode-alist '("\.ctp$" . php-mode))
;;; モードラインに行番号と列番号を表示
(line-number-mode t)
(column-number-mode t)

6
2
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
6
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?