Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Small fixes in configuration.org #56

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions emacs/.config/emacs/configuration.org
Original file line number Diff line number Diff line change
Expand Up @@ -974,7 +974,7 @@ Format code according to PEP8 on save:
#+begin_src emacs-lisp
(use-package py-autopep8
:after python-mode
:hook (elpy-mode-hook . py-autopep8-enable-on-save))
:hook (elpy-mode-hook . py-autopep8-mode))
#+end_src

** Ruby
Expand Down Expand Up @@ -1304,7 +1304,7 @@ I'm trying =vterm=. This disables =global-hl-line-mode= locally and lets me open
:ensure-system-package (cmake
("/usr/share/doc/libvterm-dev" . libvterm-dev))
:commands (multi-vterm)
:hook (vterm-mode-hook . (lambda () (setq-local global-hl-line-mode nil))))
:hook (vterm-mode . (lambda () (setq-local global-hl-line-mode nil))))

(global-set-key (kbd "C-c t") 'multi-vterm)
#+end_src
Expand Down Expand Up @@ -1867,7 +1867,8 @@ I rarely write =LaTeX= directly any more, but I often export through it with =Or
- Enable a minor mode for dealing with math (it adds a few useful keybindings), and always treat the current file as the "main" file. That's intentional, since I'm usually actually in an org document.

#+begin_src emacs-lisp
(use-package auctex
(use-package tex
:ensure auctex
:custom
(TeX-parse-self t)

Expand Down