2
3

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の設定

Last updated at Posted at 2014-12-08

emacsの.emacsの設定

なお,この記事の筆者はLispも知らないのでネットから拾ってきた設定をただメモしているだけです.
##基本設定

スタートアップ非表示

(setq inhibit-startup-screen t)

行番号の表示

(global-linum-mode t)
(set-face-attribute 'linum nil:foreground "#090":height 0.9)

タブ幅

(custom-set-variables '(tab-width 4))

バックアップを残さない

(setq make-backup-files nil)

1行ずつスクロール

(setq scroll-conservatively 35
scroll-margin 0
scroll-step 1)
(setq comint-scroll-show-maximum-output t) ;; shell-mode

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?