From 3ebe17fc2b78cc6e2db243c5e1bf7d97194b0dd0 Mon Sep 17 00:00:00 2001 From: Bazsalanszky Date: Thu, 4 Jun 2020 14:08:30 +0200 Subject: [PATCH] Added new Suff Added new things like: - Discord integration (currently now working) - Fill minor mode for Org mode - Docs view continuous option enabled - Magit key binding Signed-off-by: Bazsalanszky --- conf.org | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/conf.org b/conf.org index 4b948d9..141d96e 100644 --- a/conf.org +++ b/conf.org @@ -149,6 +149,10 @@ There are two things you can do about this warning: (global-set-key (kbd "M-RET d") 'srefactor-lisp-format-defun) (global-set-key (kbd "M-RET b") 'srefactor-lisp-format-buffer) #+END_SRC +*** Discord-Emacs +#+BEGIN_SRC emacs-lisp +(load-file "~/.emacs.d/elpa/discord-emacs.el/discord-emacs.el") +#+END_SRC * Makró beállítások ** Rtags #+BEGIN_SRC emacs-lisp @@ -208,6 +212,10 @@ There are two things you can do about this warning: #+BEGIN_SRC emacs-lisp (define-key org-mode-map (kbd "M-p") 'org-latex-export-to-pdf) #+END_SRC +** Magit +#+BEGIN_SRC emacs-lisp +(global-set-key (kbd "C-x g") 'magit-status) +#+END_SRC * Saját változók ** Csomag változók #+BEGIN_SRC emacs-lisp @@ -232,6 +240,9 @@ There are two things you can do about this warning: '((squence "TODO" "WAITING" "|" "DONE(!)"))) (setq org-highlight-latex-and-related '(latex script entities)) +(add-hook 'org-mode-hook '(lambda () (setq fill-column 80))) +(add-hook 'org-mode-hook 'auto-fill-mode) + #+END_SRC ** LaTeX #+BEGIN_SRC emacs-lisp @@ -239,6 +250,10 @@ There are two things you can do about this warning: (setq TeX-parse-self t) (setq-default TeX-master nil) #+END_SRC +** Docs view +#+BEGIN_SRC emacs-lisp +(setq doc-view-continuous t) +#+END_SRC ** Teszt #+BEGIN_SRC emacs-lisp ;; Source: http://www.emacswiki.org/emacs-en/download/misc-cmds.el