diff options
Diffstat (limited to 'shoshin-config.el')
-rw-r--r-- | shoshin-config.el | 15 |
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) |