Emacs: minor fixes.

master
Pierre Neidhardt 2013-01-10 18:22:31 +01:00
parent 611260642a
commit 02b87edf6d
3 changed files with 12 additions and 13 deletions

14
.emacs
View File

@ -4,13 +4,15 @@
;; 2013-01-09 ;; 2013-01-09
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; Main should be loaded first. (add-to-list 'load-path "~/.emacs.d/")
(load "~/.emacs.d/main.el" nil t)
(load "~/.emacs.d/theme.el" nil t) ;; Main should be loaded first.
(load "~/.emacs.d/modes.el" nil t) (load "main" nil t)
(load "~/.emacs.d/functions.el" nil t)
(load "~/.emacs.d/plugins.el" nil t) (load "theme" nil t)
(load "modes" nil t)
(load "functions" nil t)
;; (load "plugins" nil t)
;; End of file ;; End of file

View File

@ -18,10 +18,10 @@
;; Remove duplicate lines. (sort -u) ;; Remove duplicate lines. (sort -u)
;; TODO: finish it. ;; TODO: finish it.
(defun remove-duplicates () ;; (defun remove-duplicates ()
(interactive) ;; (interactive)
((shell-command (echo blah))) ;; ((shell-command (echo blah)))
) ;; )
;;============================================================================== ;;==============================================================================
;; Toggle window split ;; Toggle window split

View File

@ -2,9 +2,6 @@
;; PLUGINS ;; PLUGINS
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; User plugin path.
;; (add-to-list 'load-path "~/.emacs.d/plugins")
;;============================================================================== ;;==============================================================================
;; Yasnippet ;; Yasnippet
;;============================================================================== ;;==============================================================================