Skip to content

Instantly share code, notes, and snippets.

@mkamotsu
Created October 27, 2013 17:13
Show Gist options
  • Save mkamotsu/7185156 to your computer and use it in GitHub Desktop.
Save mkamotsu/7185156 to your computer and use it in GitHub Desktop.
(setq initial-frame-alist
'((width . 100)
(height . 39)
(top . 0)
(left . 0)
(font . "VL Gothic-10")))
(setq default-frame-alist initial-frame-alist)
(show-paren-mode 1)
(custom-set-variables
'(inhibit-startup-screen t)
'(initial-scratch-message nil))
(custom-set-faces)
(setq recentf-max-saved-items 500)
(recentf-mode 1)
(load (expand-file-name "~/quicklisp/slime-helper.el"))
(setq inferior-lisp-program "C:/opt/ccl/wx86cl64.exe")
(setq slime-net-coding-system 'utf-8-unix)
(require 'package)
(add-to-list 'package-archives
'("marmalade" . "http://marmalade-repo.org/packages/") t)
(add-to-list 'package-archives
'("melpa" . "http://melpa.milkbox.net/packages/") t)
(package-initialize)
(require 'yasnippet)
(yas-global-mode 1)
(require 'auto-complete-config)
(ac-config-default)
(setq ac-use-menu-map t)
(require 'helm-config)
(global-set-key (kbd "C-c m") 'helm-mini)
(helm-mode 1)
(require 'clojure-mode)
(require 'nrepl)
(require 'nrepl-decompile)
(require 'nrepl-ritz)
(require 'ac-nrepl)
(add-hook 'cider-repl-mode-hook 'ac-nrepl-setup)
(add-hook 'cider-mode-hook 'ac-nrepl-setup)
(eval-after-load "auto-complete"
'(add-to-list 'ac-modes 'cider-repl-mode))
(require 'paredit-everywhere)
(add-hook 'prog-mode-hook 'paredit-everywhere-mode)
(dolist (hook '(lisp-mode-hook
emacs-lisp-mode-hook
clojure-mode-hook
nrepl-repl-mode-hook
cider-repl-mode-hook))
(add-hook hook 'paredit-mode))
(require 'gist)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment