mirror of
https://github.com/vale981/dotfiles
synced 2025-03-06 01:51:40 -05:00
more emacs stuff
This commit is contained in:
parent
8a29e88b3c
commit
60dcf7681b
1 changed files with 17 additions and 2 deletions
|
@ -464,6 +464,12 @@ Use abbrev for greek input.
|
||||||
:config
|
:config
|
||||||
(direnv-mode))
|
(direnv-mode))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
*** Writeroom
|
||||||
|
Distraction free writing.
|
||||||
|
|
||||||
|
#+begin_src emacs-lisp :tangle yes
|
||||||
|
(use-package writeroom-mode)
|
||||||
|
#+end_src
|
||||||
** Programming / Language Support
|
** Programming / Language Support
|
||||||
*** LSP
|
*** LSP
|
||||||
Support for the =Language Server Protocol=.
|
Support for the =Language Server Protocol=.
|
||||||
|
@ -586,7 +592,7 @@ Set up the company backends: (maybe do it the other way around...)
|
||||||
**** Roswell
|
**** Roswell
|
||||||
Support for the roswell package manager.
|
Support for the roswell package manager.
|
||||||
#+BEGIN_SRC emacs-lisp :tangle yes
|
#+BEGIN_SRC emacs-lisp :tangle yes
|
||||||
;; (load (expand-file-name "~/.roswell/helper.el"))
|
(load (expand-file-name "~/.roswell/helper.el"))
|
||||||
#+END_SRC
|
#+END_SRC
|
||||||
|
|
||||||
**** Lispy Mode
|
**** Lispy Mode
|
||||||
|
@ -911,10 +917,15 @@ Agenda Files:
|
||||||
(add-hook 'org-babel-after-execute-hook 'org-display-inline-images 'append)
|
(add-hook 'org-babel-after-execute-hook 'org-display-inline-images 'append)
|
||||||
(setq org-startup-with-inline-images t)
|
(setq org-startup-with-inline-images t)
|
||||||
(setq imagemagick-types-inhibit t)
|
(setq imagemagick-types-inhibit t)
|
||||||
|
(define-key org-mode-map (kbd "M-<shift>-<return>")
|
||||||
|
'(lambda ()
|
||||||
|
(interactive)
|
||||||
|
(org-babel-execute-src-block)
|
||||||
|
(org-babel-next-src-block)))
|
||||||
|
|
||||||
#+end_src
|
#+end_src
|
||||||
|
|
||||||
|
|
||||||
Htmlize for nice org html export.
|
Htmlize for nice org html export.
|
||||||
#+begin_src emacs-lisp :tangle yes
|
#+begin_src emacs-lisp :tangle yes
|
||||||
(use-package htmlize)
|
(use-package htmlize)
|
||||||
|
@ -1390,6 +1401,10 @@ Debugging yay!
|
||||||
(use-package flycheck-rust
|
(use-package flycheck-rust
|
||||||
:config (add-hook 'flycheck-mode-hook #'flycheck-rust-setup))
|
:config (add-hook 'flycheck-mode-hook #'flycheck-rust-setup))
|
||||||
#+end_src
|
#+end_src
|
||||||
|
*** QML
|
||||||
|
#+begin_src emacs-lisp :tangle yes
|
||||||
|
(use-package qml-mode)
|
||||||
|
#+end_src
|
||||||
|
|
||||||
** Applications
|
** Applications
|
||||||
*** Anki
|
*** Anki
|
||||||
|
|
Loading…
Add table
Reference in a new issue