From 9d958f167a62371107f9b83ded6031c9192eb242 Mon Sep 17 00:00:00 2001 From: Julian T Date: Tue, 11 Oct 2022 11:19:42 +0200 Subject: Emacs changes --- emacs/.emacs | 19 ++++++++++++++++--- 1 file changed, 16 insertions(+), 3 deletions(-) diff --git a/emacs/.emacs b/emacs/.emacs index b323e96..dc0ff08 100644 --- a/emacs/.emacs +++ b/emacs/.emacs @@ -16,12 +16,25 @@ (global-set-key (kbd "C-c a") #'org-agenda) (global-set-key (kbd "C-c c") #'org-capture) -(setq display-line-numbers 'relative) (global-display-line-numbers-mode) +(setq display-line-numbers-type 'relative) + +(show-paren-mode 1) +(setq show-paren-when-point-inside-paren 1) + +(setq backup-directory-alist '(("." . "~/.emacs_savefiles"))) +(setq indent-tabs-mode nil) +(tool-bar-mode -1) +(toggle-scroll-bar -1) + +(setq org-agenda-files (list "~/Common/org/todo.org")) (add-hook 'org-mode-hook - (lambda () - (evil-local-set-key 'normal (kbd "") 'org-cycle))) + (lambda () + (evil-local-set-key 'normal (kbd "") 'org-cycle))) + +(setq evil-want-C-u-scroll t) + (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by hand, you could mess it up, so be careful. -- cgit v1.2.3