aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/init-ecb.el34
1 files changed, 0 insertions, 34 deletions
diff --git a/modules/init-ecb.el b/modules/init-ecb.el
deleted file mode 100644
index 83e0167..0000000
--- a/modules/init-ecb.el
+++ /dev/null
@@ -1,34 +0,0 @@
-;;; init-ecb.el --- .Emacs Configuration -*- lexical-binding: t -*-
-;;; Commentary:
-;;
-
-;;; Code:
-;;----------------------------------------------------------------------------
-;; ECB
-;;----------------------------------------------------------------------------
-(use-package ecb
- :config
- (custom-set-variables '(ecb-options-version "2.50"))
- (setq-default ecb-tip-of-the-day nil)
- (setq ecb-examples-bufferinfo-buffer-name nil)
-
- (defun ecb-toggle ()
- "Toogle ECB."
- (interactive)
- (eval-when-compile (require 'ecb nil t))
- (when (and (require 'ecb nil t)
- (fboundp 'ecb-deactivate))
- (if ecb-minor-mode
- (ecb-deactivate)
- (ecb-activate))))
-
- (global-set-key [f2] 'ecb-toggle)
-
- )
-
-(provide 'init-ecb)
-
-;; Local Variables:
-;; byte-compile-warnings: (not free-vars)
-;; End:
-;;; init-ecb.el ends here