Skip to content

Instantly share code, notes, and snippets.

@cloverrose
Created July 5, 2013 06:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cloverrose/5932301 to your computer and use it in GitHub Desktop.
Save cloverrose/5932301 to your computer and use it in GitHub Desktop.
Emacsで大きいファイルを開くとき用の関数
(defun liteweight()
"to read large file."
(interactive)
(progn
(setq ac-auto-start nil)
(setq show-paren-mode nil)
(global-linum-mode -1)
(line-number-mode 1)
(global-whitespace-mode -1)
(disable-theme 'aria)
(turn-off-fci-mode)
(toggle-truncate-lines 1)
))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment