You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
2.2 KiB
53 lines
2.2 KiB
(require 'package)
|
|
(add-to-list 'package-archives
|
|
'("melpa-stable" . "http://stable.melpa.org/packages/") t)
|
|
(package-initialize)
|
|
(menu-bar-mode -1)
|
|
(tool-bar-mode -1)
|
|
|
|
(defun indent-buffer ()
|
|
(interactive)
|
|
(save-excursion
|
|
(indent-region (point-min) (point-max) nil)))
|
|
(global-set-key [f12] 'indent-buffer)
|
|
|
|
(recentf-mode 1)
|
|
(setq recentf-max-menu-items 25)
|
|
(global-set-key "\C-x\ \C-r" 'recentf-open-files)
|
|
|
|
(global-set-key (kbd "C-M-SPC") 'just-one-space)
|
|
|
|
(global-set-key (kbd "C-x -") 'hs-toggle-hiding)
|
|
|
|
(autoload 'enable-paredit-mode "paredit" "Turn on pseudo-structural editing of Lisp code." t)
|
|
(add-hook 'lisp-mode-hook 'enable-paredit-mode)
|
|
(add-hook 'emacs-lisp-mode-hook 'enable-paredit-mode)
|
|
(add-hook 'eval-expression-minibuffer 'enable-paredit-mode)
|
|
(add-hook 'clojure-mode-hook 'enable-paredit-mode)
|
|
(add-hook 'clojure-mode-hook 'hs-minor-mode)
|
|
;;(add-hook 'clojure-mode-hook 'company-mode)
|
|
(add-hook 'less-css-mode-hook 'hs-minor-mode)
|
|
(add-hook 'before-save-hook 'delete-trailing-whitespace)
|
|
|
|
(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 (misterioso)))
|
|
'(package-selected-packages
|
|
(quote
|
|
(which-key ac-cider company js3-mode less-css-mode sass-mode paredit markdown-mode yaml-mode editorconfig auto-complete parinfer git-commit cider clojure-mode projectile better-defaults))))
|
|
(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.
|
|
'(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")))))
|
|
|
|
(global-auto-complete-mode)
|
|
(global-linum-mode)
|
|
(which-key-mode)
|