master
Josha von Gizycki 5 years ago
parent 5436e77451
commit d63d783a71

@ -90,22 +90,11 @@ There are two things you can do about this warning:
;; cider shit
(setq cider-repl-display-in-current-window t)
;; helm shit
(require 'helm-config)
(helm-mode 1)
(global-set-key (kbd "M-x") 'helm-M-x)
;; projectile shit
(require 'projectile)
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)
(projectile-mode +1)
;; misc global modes
(global-auto-complete-mode)
(global-linum-mode)
(which-key-mode)
(editorconfig-mode 1)
(dumb-jump-mode)
(add-hook 'prog-mode-hook (lambda () (idle-highlight-mode t)))
(defun clojure-mode-hook ()
@ -140,3 +129,15 @@ There are two things you can do about this warning:
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(default ((t (:inherit nil :stipple nil :background "#2d3743" :foreground "#e1e1e0" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 100 :width normal :foundry "DAMA" :family "monospace")))))
;; helm shit
(package-initialize)
(require 'helm-config)
(helm-mode 1)
(global-set-key (kbd "M-x") 'helm-M-x)
;; Projectile shit
(require 'projectile)
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)
(projectile-mode +1)
(dumb-jump-mode)

Loading…
Cancel
Save