-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FossilOrigin-Name: 36c6b9447f7daee2ab19c5c627866bf179a5dda1
- Loading branch information
Showing
2 changed files
with
68 additions
and
1 deletion.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
|
||
(package-initialize) | ||
(unless (require 'quelpa nil t) | ||
(with-temp-buffer | ||
(url-insert-file-contents | ||
"https://raw.github.com/quelpa/quelpa/master/bootstrap.el") | ||
(eval-buffer))) | ||
|
||
(quelpa 'use-package) | ||
(require 'use-package) | ||
|
||
(quelpa '(quse-package :fetcher github | ||
:repo "jaccarmac/quse-package" | ||
:files ("tangled/quse-package.el"))) | ||
(require 'quse-package) | ||
|
||
(quse-package better-defaults) | ||
|
||
(setq-default fill-column 79) | ||
|
||
(quse-package undo-tree | ||
:init (global-undo-tree-mode)) | ||
|
||
(quse-package powerline | ||
:init (powerline-default-theme)) | ||
|
||
(quse-package moe-theme | ||
:init (load-theme 'moe-dark t)) | ||
|
||
(quse-package smartparens | ||
:init (smartparens-global-mode)) | ||
|
||
(quse-package ledger-mode) | ||
|
||
(quse-package projectile | ||
:init (projectile-global-mode)) | ||
|
||
(quse-package magit) | ||
|
||
(quse-package auto-complete | ||
:init (progn (require 'auto-complete-config) | ||
(ac-config-default))) | ||
|
||
(quse-package cider | ||
:init (progn | ||
(add-hook 'cider-mode-hook 'cider-turn-on-eldoc-mode) | ||
(setq cider-repl-tab-command 'indent-for-tab-command))) | ||
|
||
(quse-package ac-cider | ||
:init (progn (add-hook 'cider-mode-hook 'ac-cider-setup) | ||
(add-hook 'cider-repl-mode-hook 'ac-cider-setup))) | ||
|
||
(quse-package slime | ||
:init (progn | ||
(setq inferior-lisp-program "sbcl") | ||
(setq common-lisp-hyperspec-root | ||
"/usr/share/doc/hyperspec/") | ||
(setq slime-contribs '(slime-fancy)) | ||
(slime-setup))) | ||
|
||
(quelpa 'ac-slime) | ||
(use-package ac-slime | ||
:init (progn (add-hook 'slime-mode-hook 'set-up-slime-ac) | ||
(add-hook 'slime-repl-mode-hook 'set-up-slime-ac) | ||
(eval-after-load "auto-complete" | ||
'(add-to-list 'ac-modes 'slime-repl-mode)))) | ||
|
||
(quse-package web-mode) |