aboutsummaryrefslogtreecommitdiff
path: root/shoshin-config.el
diff options
context:
space:
mode:
authorGrant Shangreaux <grant@unabridgedsoftware.com>2022-08-02 09:30:05 -0500
committerGrant Shangreaux <grant@unabridgedsoftware.com>2022-08-02 09:30:05 -0500
commitca6e97488d982c4a812c986eb7c8ed98e460703a (patch)
tree2d7b87a7494115fcf7a8de6784a84121b64177da /shoshin-config.el
parent2d89bc4ded659777874ff2336f87084cb6a487d7 (diff)
Add: turn off indent tabs mode, some keymap tweaks
Diffstat (limited to 'shoshin-config.el')
-rw-r--r--shoshin-config.el15
1 files changed, 10 insertions, 5 deletions
diff --git a/shoshin-config.el b/shoshin-config.el
index 2f3a30a..0ebda71 100644
--- a/shoshin-config.el
+++ b/shoshin-config.el
@@ -46,11 +46,11 @@
(define-prefix-command (quote ,keymap))
(global-set-key (kbd ,leader) ,keymap)
(mapc (lambda (pair)
- (define-key ,keymap
- (kbd (if (numberp (car pair)) (number-to-string (car pair))
- (symbol-name (car pair))))
- (cadr pair)))
- (quote ,(seq-partition pairs 2)))))
+ (define-key ,keymap
+ (kbd (if (numberp (car pair)) (number-to-string (car pair))
+ (symbol-name (car pair))))
+ (cadr pair)))
+ (quote ,(seq-partition pairs 2)))))
(defvar *my-config* "~/projects/shoshimacs/shoshin-config.org"
"Path to my main configuration file.")
@@ -77,6 +77,9 @@
i consult-imenu
j describe-function
k describe-variable
+ n tab-next
+ p project-prefix-map
+ s consult-ripgrep
t consult-theme
w which-key-mode
<f1> my-reload-config)
@@ -146,6 +149,8 @@
(recentf-mode)
+(setq indent-tabs-mode nil)
+
;;; Programming
(package-install 'sly)