]> code.delx.au - dotemacs/blobdiff - lisp/my-minor-modes.el
Massive update!
[dotemacs] / lisp / my-minor-modes.el
diff --git a/lisp/my-minor-modes.el b/lisp/my-minor-modes.el
deleted file mode 100644 (file)
index a38657f..0000000
+++ /dev/null
@@ -1,40 +0,0 @@
-(require 'avy)
-(setq avy-background t)
-(setq avy-all-windows nil)
-(setq avy-timeout-seconds 1)
-
-(require 'change-inner)
-
-(require 'editorconfig)
-(editorconfig-mode 1)
-
-(require 'expand-region)
-
-(require 'indent-guide)
-(indent-guide-global-mode)
-
-(require 'flyspell)
-
-(require 'flycheck)
-(global-flycheck-mode 1)
-(setq-default flycheck-disabled-checkers '(emacs-lisp-checkdoc))
-(setq flycheck-emacs-lisp-load-path 'inherit)
-(add-hook 'flycheck-mode-hook #'my/use-eslint-from-node-modules)
-
-(require 'misc)
-
-(require 'multiple-cursors)
-
-(require 'xt-mouse)
-(xterm-mouse-mode)
-
-(require 'yasnippet)
-(setq yas-snippet-dirs '("~/.emacs.d/snippets"))
-(yas-global-mode 1)
-(add-hook 'python-mode-hook
-          (lambda () (set (make-local-variable 'yas-indent-line) 'fixed)))
-
-(require 'diminish)
-(diminish 'indent-guide-mode)
-(diminish 'ivy-mode)
-(diminish 'yas-minor-mode)