remove a package, do stuffsssss

This commit is contained in:
opfez 2021-05-25 21:16:01 +02:00
parent 6dae178fd3
commit b2d7230292
3 changed files with 5 additions and 11 deletions

View File

@ -55,10 +55,8 @@
c-basic-offset 4)
;; Scheme configuration
(setq geiser-active-implementations '(guile))
(setq geiser-guile-binary "/usr/bin/guile")
;; (setq geiser-guile-binary "/usr/bin/guile")
;; for ncurses development, uncomment this:
;; (setq geiser-guile-binary "/usr/local/bin/guile-ncurses-shell")
;; (setq geiser-active-implementations '(mit))
;; (setq geiser-active-implementations '(chez))
(setq geiser-active-implementations '(chez guile))

View File

@ -78,13 +78,6 @@
:config
(pending-delete-mode t)) ; if you start typing while a word is selected, overwrite it
;; Move lines of text up or down.
(use-package move-text
:ensure t
:config
(global-set-key (kbd "M-p") 'move-text-up)
(global-set-key (kbd "M-n") 'move-text-down))
;; Multiple cursors make it easier to refactor stuff.
(use-package multiple-cursors
:ensure t

View File

@ -70,3 +70,6 @@
;; delete trailing whitespace before saving
(add-hook 'before-save-hook 'delete-trailing-whitespace)
;; Start replacing text if it is marked
(delete-selection-mode 1)