summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Paśnikowski <marekpasnikowski@protonmail.com>2022-11-22 08:22:25 +0100
committerMarek Paśnikowski <marekpasnikowski@protonmail.com>2022-11-22 08:29:40 +0100
commitf74ee7822e5f6ed983615d908a6dfbbb4b669012 (patch)
treecf6944c327a56d2572a52348bad379df865ec73c
parentda152c9c6e4ab9ce65ef21d36106aa63a7bc06c0 (diff)
Uninstall Emacs Geiser and Emacs EMR
-rw-r--r--emacs.el34
-rw-r--r--home-configuration.scm3
2 files changed, 0 insertions, 37 deletions
diff --git a/emacs.el b/emacs.el
index 7b7c459..d7e9c70 100644
--- a/emacs.el
+++ b/emacs.el
@@ -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
diff --git a/home-configuration.scm b/home-configuration.scm
index 3a1998a..54d97be 100644
--- a/home-configuration.scm
+++ b/home-configuration.scm
@@ -14,10 +14,7 @@
'("cpupower"
"dconf-editor"
"emacs"
- "emacs-ac-geiser"
"emacs-aggressive-indent"
- "emacs-geiser"
- "emacs-geiser-guile"
"emacs-guix"
"emacs-iedit"
"emacs-multiple-cursors"