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 <bazs@makk.ml>
This commit is contained in:
parent
f55c1cb9cf
commit
3ebe17fc2b
1 changed files with 15 additions and 0 deletions
15
conf.org
15
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
|
||||
|
|
Loading…
Reference in a new issue