Skillnad mellan versioner av "Emacs info"
Från Charlottendal
Stig (Diskussion | bidrag) (→HOME-katalog) |
Stig (Diskussion | bidrag) (→.emacs) |
||
(2 mellanliggande versioner av samma användare visas inte) | |||
Rad 8: | Rad 8: | ||
"HOME"="h:\\local" | "HOME"="h:\\local" | ||
+ | </pre> | ||
+ | ====.emacs==== | ||
+ | <pre> | ||
+ | (custom-set-variables | ||
+ | ;; custom-set-variables was added by Custom. | ||
+ | ;; If you edit it by hand, you could mess it up, so be careful. | ||
+ | ;; Your init file should contain only one such instance. | ||
+ | ;; If there is more than one, they won't work right. | ||
+ | '(inhibit-startup-screen t) | ||
+ | '(next-line-add-newlines nil) | ||
+ | '(require-final-newline t) | ||
+ | '(show-paren-mode t) | ||
+ | '(size-indication-mode t) | ||
+ | '(tool-bar-mode nil) | ||
+ | '(transient-mark-mode t)) | ||
+ | (custom-set-faces | ||
+ | ;; custom-set-faces was added by Custom. | ||
+ | ;; If you edit it by hand, you could mess it up, so be careful. | ||
+ | ;; Your init file should contain only one such instance. | ||
+ | ;; If there is more than one, they won't work right. | ||
+ | ) | ||
+ | (set-frame-height (selected-frame) 80) | ||
+ | (set-frame-width (selected-frame) 120) | ||
+ | (transient-mark-mode t) | ||
+ | (show-paren-mode 1) | ||
+ | ;; language | ||
+ | (set-input-mode t nil 'iso) | ||
+ | (standard-display-8bit 160 255) | ||
</pre> | </pre> | ||
===Länkar=== | ===Länkar=== | ||
[http://www.gnu.org/software/emacs/windows/Installing-Emacs.html#Installing-Emacs Installation] | [http://www.gnu.org/software/emacs/windows/Installing-Emacs.html#Installing-Emacs Installation] | ||
+ | |||
+ | [[Category:support]] | ||
+ | [[Category:Windows]] | ||
+ | [[Category:Emacs]] |
Nuvarande version från 22 november 2010 kl. 12.34
Emacs
Installation
HOME-katalog
Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\GNU\Emacs] "HOME"="h:\\local"
.emacs
(custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(inhibit-startup-screen t) '(next-line-add-newlines nil) '(require-final-newline t) '(show-paren-mode t) '(size-indication-mode t) '(tool-bar-mode nil) '(transient-mark-mode t)) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. ) (set-frame-height (selected-frame) 80) (set-frame-width (selected-frame) 120) (transient-mark-mode t) (show-paren-mode 1) ;; language (set-input-mode t nil 'iso) (standard-display-8bit 160 255)