Newer
Older
dotfiles / emacs / emacs.symlink
@Marcus Bengtsson Marcus Bengtsson on 30 Jan 2018 1 KB Added nvim and emacs stuff
(package-initialize)

(require 'package)
(add-to-list 'package-archives '("melpa" . "http://melpa.org/packages/"))
(package-initialize)

(require 'multi-term)
(setq multi-term-program "/bin/zsh")

(add-to-list 'exec-path "/usr/local/bin")
(set-keyboard-coding-system nil)
(setq system-uses-terminfo nil)

(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.
 '(ansi-color-faces-vector
   [default default default italic underline success warning error])
 '(custom-enabled-themes (quote (wombat)))
 '(package-selected-packages
   (quote
    (projectile clojure-mode-extra-font-locking cider multi-term))))
(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.
 )