Compare commits
3 Commits
e3ad628597
...
cf77a594c6
Author | SHA1 | Date | |
---|---|---|---|
cf77a594c6 | |||
dab3d10b6d | |||
0f6745d8aa |
2
+org.el
2
+org.el
@ -37,3 +37,5 @@
|
|||||||
(add-to-list 'org-latex-packages-alist '("AUTO" "babel" t ("pdflatex")))
|
(add-to-list 'org-latex-packages-alist '("AUTO" "babel" t ("pdflatex")))
|
||||||
;; Don't evaluate code blocks on export
|
;; Don't evaluate code blocks on export
|
||||||
(setq org-export-use-babel nil)
|
(setq org-export-use-babel nil)
|
||||||
|
;; Speed up agenda startup
|
||||||
|
(setq org-agenda-dim-blocked-tasks nil)
|
||||||
|
8
+ui.el
8
+ui.el
@ -14,6 +14,12 @@
|
|||||||
(setq doom-modeline-major-mode-icon t
|
(setq doom-modeline-major-mode-icon t
|
||||||
doom-modeline-persp-name t
|
doom-modeline-persp-name t
|
||||||
doom-modeline-buffer-encoding nil)
|
doom-modeline-buffer-encoding nil)
|
||||||
(setq evil-command-window-height 3)
|
|
||||||
;; Hide direnv environment variables popup
|
;; Hide direnv environment variables popup
|
||||||
(setq direnv-always-show-summary nil)
|
(setq direnv-always-show-summary nil)
|
||||||
|
;; Disable LSP documentation popup
|
||||||
|
(after! lsp
|
||||||
|
(setq lsp-ui-doc-enable nil
|
||||||
|
lsp-signature-auto-activate nil))
|
||||||
|
;; Shrink minibuffer
|
||||||
|
(after! ivy
|
||||||
|
(setq ivy-height 10))
|
||||||
|
@ -49,3 +49,5 @@
|
|||||||
(message "No Compilation Errors!")))))
|
(message "No Compilation Errors!")))))
|
||||||
;; Enable writeroom for text modes
|
;; Enable writeroom for text modes
|
||||||
(setq writeroom-major-modes '(markdown-mode org-mode))
|
(setq writeroom-major-modes '(markdown-mode org-mode))
|
||||||
|
;; Disable company in Nix mode
|
||||||
|
(set-company-backend! 'nix-mode nil)
|
||||||
|
3
init.el
3
init.el
@ -36,7 +36,8 @@
|
|||||||
(popup ; tame sudden yet inevitable temporary windows
|
(popup ; tame sudden yet inevitable temporary windows
|
||||||
+all ; catch all popups that start with an asterix
|
+all ; catch all popups that start with an asterix
|
||||||
+defaults) ; default popup rules
|
+defaults) ; default popup rules
|
||||||
(pretty-code +iosevka); replace bits of code with pretty symbols
|
(pretty-code
|
||||||
|
+iosevka) ; replace bits of code with pretty symbols
|
||||||
;;tabs ; an tab bar for Emacs
|
;;tabs ; an tab bar for Emacs
|
||||||
;;treemacs ; a project drawer, like neotree but cooler
|
;;treemacs ; a project drawer, like neotree but cooler
|
||||||
;;unicode ; extended unicode support for various languages
|
;;unicode ; extended unicode support for various languages
|
||||||
|
Loading…
Reference in New Issue
Block a user