Become an App Developer and minor tweaks
This commit is contained in:
parent
7459874574
commit
2d7412685c
2
+org.el
2
+org.el
|
@ -36,3 +36,5 @@
|
||||||
(:cache . "no") (:noweb . "no") (:hlines . "no") (:tangle . "no")))
|
(:cache . "no") (:noweb . "no") (:hlines . "no") (:tangle . "no")))
|
||||||
;; Enter writeroom-mode in all org files
|
;; Enter writeroom-mode in all org files
|
||||||
(add-hook 'org-mode-hook 'global-writeroom-mode)
|
(add-hook 'org-mode-hook 'global-writeroom-mode)
|
||||||
|
;; Respect LANGUAGE export variable
|
||||||
|
(add-to-list 'org-latex-packages-alist '("AUTO" "babel" t ("pdflatex")))
|
||||||
|
|
2
+ui.el
2
+ui.el
|
@ -3,8 +3,6 @@
|
||||||
;; Set Font and theme
|
;; Set Font and theme
|
||||||
(setq doom-font (font-spec :family "Iosevka Medium" :size 16)
|
(setq doom-font (font-spec :family "Iosevka Medium" :size 16)
|
||||||
doom-theme 'doom-nord)
|
doom-theme 'doom-nord)
|
||||||
;; Start maximized
|
|
||||||
(add-to-list 'default-frame-alist '(fullscreen . maximized))
|
|
||||||
;; Display Magit status in fullscreen
|
;; Display Magit status in fullscreen
|
||||||
(after! magit
|
(after! magit
|
||||||
(setq magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1))
|
(setq magit-display-buffer-function #'magit-display-buffer-fullframe-status-v1))
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
;; Enter writeroom and disable completion and line numbers in Markdown
|
;; Enter writeroom and disable completion and line numbers in Markdown
|
||||||
(after! markdown
|
(after! markdown
|
||||||
(set-company-backend! 'markdown-mode nil)
|
(set-company-backend! 'markdown-mode nil)
|
||||||
(add-hook 'markdown-mode-hook '(lambda () (display-line-numbers-mode -1)))
|
(add-hook 'markdown-mode-hook (lambda () (display-line-numbers-mode -1)))
|
||||||
(add-hook 'markdown-mode-hook 'global-writeroom-mode))
|
(add-hook 'markdown-mode-hook 'global-writeroom-mode))
|
||||||
;; Reload file from disk without confirmation
|
;; Reload file from disk without confirmation
|
||||||
(defun revert-buffer-no-confirm ()
|
(defun revert-buffer-no-confirm ()
|
||||||
|
|
4
init.el
4
init.el
|
@ -121,7 +121,7 @@
|
||||||
;;(haskell +dante) ; a language that's lazier than I am
|
;;(haskell +dante) ; a language that's lazier than I am
|
||||||
;;hy ; readability of scheme w/ speed of python
|
;;hy ; readability of scheme w/ speed of python
|
||||||
;;idris ;
|
;;idris ;
|
||||||
;;(java +meghanada) ; the poster child for carpal tunnel syndrome
|
(java +meghanada) ; the poster child for carpal tunnel syndrome
|
||||||
;;javascript ; all(hope(abandon(ye(who(enter(here))))))
|
;;javascript ; all(hope(abandon(ye(who(enter(here))))))
|
||||||
;;julia ; a better, faster MATLAB
|
;;julia ; a better, faster MATLAB
|
||||||
;;kotlin ; a better, slicker Java(Script)
|
;;kotlin ; a better, slicker Java(Script)
|
||||||
|
@ -156,7 +156,7 @@
|
||||||
;;scheme ; a fully conniving family of lisps
|
;;scheme ; a fully conniving family of lisps
|
||||||
sh ; she sells {ba,z,fi}sh shells on the C xor
|
sh ; she sells {ba,z,fi}sh shells on the C xor
|
||||||
;;solidity ; do you need a blockchain? No.
|
;;solidity ; do you need a blockchain? No.
|
||||||
;;swift ; who asked for emoji variables?
|
swift ; who asked for emoji variables?
|
||||||
;;terra ; Earth and Moon in alignment for performance.
|
;;terra ; Earth and Moon in alignment for performance.
|
||||||
web ; the tubes
|
web ; the tubes
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue