diff options
author | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-11-22 08:22:25 +0100 |
---|---|---|
committer | Marek Paśnikowski <marekpasnikowski@protonmail.com> | 2022-11-22 08:29:40 +0100 |
commit | f74ee7822e5f6ed983615d908a6dfbbb4b669012 (patch) | |
tree | cf6944c327a56d2572a52348bad379df865ec73c /emacs.el | |
parent | da152c9c6e4ab9ce65ef21d36106aa63a7bc06c0 (diff) |
Uninstall Emacs Geiser and Emacs EMR
Diffstat (limited to 'emacs.el')
-rw-r--r-- | emacs.el | 34 |
1 files changed, 0 insertions, 34 deletions
@@ -12,10 +12,6 @@ ;;; Theme Activation (load-theme 'manoj-dark) -;;; https://www.lucacambiaghi.com/vanilla-emacs/readme.html -;;; =defvar= warnings fix -(setq-default enable-local-variables :all) - ;;; https://elpa.gnu.org/packages/aggressive-indent.html ;;; Automatic Activation of Aggressive Indent (global-aggressive-indent-mode 1) @@ -28,19 +24,6 @@ (setq-default show-paren-delay 0) -;; Add Geiser and its auto-completion -(ac-config-default) -(require 'ac-geiser) -(add-hook 'geiser-mode-hook - 'ac-geiser-setup) -(add-hook 'geiser-repl-mode-hook - 'ac-geiser-setup) -(with-eval-after-load 'auto-complete - (add-to-list 'ac-modes - 'geiser-repl-mode-hook)) -(with-eval-after-load 'geiser-guile - (add-to-list 'geiser-guile-load-path "~/src/aisaka")) - ;; Edit the code based on the S-expression structure (require 'paredit) (autoload 'enable-paredit-mode @@ -64,23 +47,6 @@ ;; (global-set-key (kbd "C-c C-<") ;; 'mc/mark-all-like-this) -;; Extract variables and functions -(if (not (package-installed-p 'emr)) - (progn (package-refresh-contents) - (package-install 'emr))) -(require 'emr) -(autoload 'emr-show-refactor-menu - "emr") -(define-key prog-mode-map - (kbd "M-RET") - 'emr-show-refactor-menu) -(eval-after-load "emr" - '(emr-initialize)) -(global-set-key (kbd "M-v") - 'emr-scm-extract-variable) -(global-set-key (kbd "M-f") - 'emr-scm-extract-function) - ;;; https://guix.gnu.org/manual/en/html_node/The-Perfect-Setup.html ;;; Copyright Information (setq-default user-full-name |