From f3f98ccf35442696cc5cacfee451e9e2f99071e2 Mon Sep 17 00:00:00 2001 From: swaggboi Date: Sat, 23 Sep 2023 20:43:58 -0400 Subject: [PATCH] new emacs stuff --- my_home/.emacs | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/my_home/.emacs b/my_home/.emacs index bb09452..14093c9 100644 --- a/my_home/.emacs +++ b/my_home/.emacs @@ -10,7 +10,7 @@ ;; If there is more than one, they won't work right. '(custom-enabled-themes '(tango-dark)) '(package-selected-packages - '(company yasnippet project eglot dockerfile-mode php-mode web-mode kotlin-mode markdown-mode elpher yaml-mode raku-mode emojify))) + '(flycheck-raku company yasnippet project eglot dockerfile-mode php-mode web-mode kotlin-mode markdown-mode elpher yaml-mode raku-mode emojify))) (custom-set-faces ;; custom-set-faces was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. @@ -100,3 +100,10 @@ cperl-indent-subs-specially nil cperl-highlight-variables-indiscriminately t cperl-invalid-face nil) + +;; raku-mode cope +(add-hook 'raku-mode-hook + (lambda () + (setq tab-width 4) + (local-set-key (kbd "TAB") 'tab-to-tab-stop) + (electric-indent-local-mode -1)))