紹介マニアMoinMoin

概要

Emacs22 以上では ~/.emacs.d 以下に集めるのが良い。

~/.emacs.d/init.el を起動ファイルとして読むので ~/.emacs や ~/.emacs.el ではなくて ~/.emacs.d/init.el にした方が良い

設定

.emacs.d って変更できたっけ?

構成をどうするか

設定系のディレクトリ名を何にするか

conf
pref

bin
data
etc
info
lisp
lock
share
site-lisp

とか

設定

;; 極力UTF-8とする
(prefer-coding-system 'utf-8)
;; 一行ずつスクロールする
(setq scroll-conservatively 35)
(setq scroll-margin 0)
(setq scroll-step 1)
(setq comint-scroll-show-maximum-output t)
;; 現在行の強調表示
(global-hl-line-mode)
(hl-line-mode 1)

subdirs.el

;; -*- no-byte-compile: t -*-
(if (fboundp 'normal-top-level-add-subdirs-to-load-path)
    (normal-top-level-add-subdirs-to-load-path))

参考になりそうな .emacs

elim's dotemacs at master - GitHub

Declaring .emacs Bankruptcy | M-x all-things-emacs

.emacs - Snipt.org

http://bitbucket.org/birkenfeld/dotemacs/src/a8807e1e7f0f/

emacs.d at master from rmm5t's dotfiles - GitHub

/dotfiles/emacs – CodeRepos::Share – Trac

/dotfiles/emacs/shyouhei/.emacs.d – CodeRepos::Share – Trac

filcab's elisp at master - GitHub

http://nullman.org/tutorial/Emacs.html

参考サイト


CategoryEmacs

紹介マニアMoinMoin: dot.emacs.d (last edited 2024-03-01 13:46:27 by sakito)