Why isn't shit working?

This commit is contained in:
Ivan Malison 2013-03-16 16:40:09 -07:00
parent efea58982b
commit a9e47e5048
2 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -1,2 +1,3 @@
ac-comphist.dat ac-comphist.dat
auto-save-list auto-save-list
eproject.lst

View File

@ -16,8 +16,8 @@
(let ((default-directory "~/.emacs.d/lisp/")) (let ((default-directory "~/.emacs.d/lisp/"))
(normal-top-level-add-subdirs-to-load-path)) (normal-top-level-add-subdirs-to-load-path))
(add-to-list 'load-path "~/.emacs.d/elpa") (add-to-list 'load-path "~/.emacs.d/elpa")
(add-to-list 'load-path "~/.emacs.d/lisp/multi-line-it")
(message load-path)
;; ============================================================================= ;; =============================================================================
;; General Emacs Options ;; General Emacs Options
@ -60,14 +60,14 @@
(load-file "~/.emacs.d/emacs-for-python/epy-init.el") (load-file "~/.emacs.d/emacs-for-python/epy-init.el")
;; Multi-lining for python. ;; Multi-lining for python.
(require 'multi-line-it) ;;(require 'multi-line-it)
;; Set tabs to be four spaces wide in python mode. ;; Set tabs to be four spaces wide in python mode.
(add-hook 'python-mode-hook (add-hook 'python-mode-hook
(lambda () (lambda ()
(setq indent-tabs-mode t) (setq indent-tabs-mode t)
(setq tab-width 4) (setq tab-width 4)
(setq python-indent 4))))))))) (setq python-indent 4)))
;; ============================================================================= ;; =============================================================================
;; Custom Key Bindings ;; Custom Key Bindings