add helpful, paredit. bind keys with use-package. use modus-vivendi-tinted theme

This commit is contained in:
Mateus Rodrigues
2026-07-05 20:33:15 +01:00
parent 36774be5bd
commit a8f6a83fe6
2 changed files with 12 additions and 4 deletions

View File

@@ -18,7 +18,14 @@
;; :config
;; (load-theme 'zenburn t))
(load-theme 'modus-operandi-tinted t)
(load-theme 'modus-vivendi-tinted t)
;; QOL packages
(use-package helpful
:bind (("C-h f" . #'helpful-callable)
("C-h v" . #'helpful-variable)
("C-h k" . #'helpful-key)
("C-h x" . #'helpful-command)))
;; Org
(use-package org
@@ -70,7 +77,8 @@
;; git
(use-package magit
:demand t)
:demand t
:bind ("C-x g" . 'magit-status))
;; ;; code completion
(use-package company
@@ -96,6 +104,8 @@
:config
(load "~/.emacs.d/elisp/slime-setup.el"))
(use-package paredit)
;; Clojure
(use-package cider)

View File

@@ -1,5 +1,3 @@
;; magit
(global-set-key (kbd "C-x g") 'magit-status)
;; eshell
(global-set-key (kbd "<f4>") 'eshell)
(global-set-key (kbd "H-e") 'eshell)