emacs

2011-11-03 | #emacs

Mon fichier ~/.emacs (require 'color-theme) (load-file "~/.emacs.d/themes/color-theme-blackboard.el") (color-theme-blackboard) (menu-bar-mode -1) (tool-bar-mode -1) (scroll-bar-mode -1) (setq column-number-mode t) (setq line-number-mode t) (setq inhibit-startup-message t) ;; ==================== KEYS ==================== ;; already bind via simple.el ;; (global-set-key [home] 'beginning-of-line) ;; (global-set-key [end] 'end-of-line) ;; (global-set-key [backspace] 'backward-delete-char-untabify) ;; (global-set-key [(control space)] 'set-mark-command) ;; (global-set-key [(control insert)] 'kill-ring-save) ;; (global-set-key [(shift insert)] 'yank) ;; (global-set-key [(control home)] 'beginning-of-buffer) ;; (global-set-key [(control end)] 'end-of-buffer) ;; (global-set-key [(control left)] 'backward-word) ;; (global-set-key [(control right)] 'forward-word) ;; (global-set-key [(control o)] 'open-line) ;; already bind via paragraphs.

Continuer la lecture 