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.
|
|
|
;;; custom.el --- A special place to shove the custom-set-variable code that emacs 25.1
|
|
|
|
;;; insists on using for package management.
|
|
|
|
;;;
|
|
|
|
;;; Commentary:
|
|
|
|
;;;
|
|
|
|
;;; These variables are used by the package manager to handle dependencies. As a result,
|
|
|
|
;;; they are necessary. This file exists in order to move this rather noisy section out
|
|
|
|
;;; of the init.el
|
|
|
|
|
|
|
|
|
|
|
|
(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.
|
|
|
|
'(lisp-indent-function 'common-lisp-indent-function)
|
|
|
|
'(package-selected-packages
|
|
|
|
'(python-pytest rvm rinari slime elpy clang-format+ cmake-mode cmake-ide lsp-python-ms lsp-ui lsp-mode ivy arjen-grey-theme oceanic-theme company-lsp projectile smex grizzl flycheck-pos-tip flycheck material-theme expand-region wrap-region rainbow-delimiters powerline linum-relative golden-ratio fill-column-indicator autopair exec-path-from-shell ws-butler yaml-mode python-mode protobuf-mode paredit nasm-mode meson-mode markdown-mode magit gradle-mode gitignore-mode feature-mode counsel company-jedi jedi-core company-emacs-eclim company-irony company ag))
|
|
|
|
'(safe-local-variable-values
|
|
|
|
'((eval setq flycheck-command-wrapper-function
|
|
|
|
(lambda
|
|
|
|
(command)
|
|
|
|
(append
|
|
|
|
'("bundle" "exec")
|
|
|
|
command))))))
|
|
|
|
|
|
|
|
(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.
|
|
|
|
)
|