[emacs] Stuff, theme

This commit is contained in:
John Doty 2020-08-31 13:11:18 -07:00
parent 51e7a9c29d
commit dd21501e53
2 changed files with 9 additions and 6 deletions

View file

@ -64,7 +64,7 @@
((sequence "TODO" "|" "DONE" "ABANDONED" "DEFERRED"))))
'(package-selected-packages
(quote
(esup gnu-elpa-keyring-update lsp-hack hack-mode rust-mode filladapt lsp-ui yaml-mode wgrep fsharp-mode company-lsp cquery mustache-mode clang-format projectile dash-functional mocha add-node-modules-path rjsx-mode xref-js2 js2-refactor company omnisharp geiser cider clojure-mode graphviz-dot-mode multi-term xterm-color thrift markdown-mode tuareg merlin ag use-package flycheck dockerfile-mode js2-mode web-mode tss switch-window python-mode paredit magit lua-mode go-mode go-autocomplete exec-path-from-shell csharp-mode color-theme-monokai auto-complete auto-complete-nxml flymake flyspell json-mode popup ruby-mode company-jedi tide elm-mode monky)))
(modus-operandi-theme esup gnu-elpa-keyring-update lsp-hack hack-mode rust-mode filladapt lsp-ui yaml-mode wgrep fsharp-mode company-lsp cquery mustache-mode clang-format projectile dash-functional mocha add-node-modules-path rjsx-mode xref-js2 js2-refactor company omnisharp geiser cider clojure-mode graphviz-dot-mode multi-term xterm-color thrift markdown-mode tuareg merlin ag use-package flycheck dockerfile-mode js2-mode web-mode tss switch-window python-mode paredit magit lua-mode go-mode go-autocomplete exec-path-from-shell csharp-mode color-theme-monokai auto-complete auto-complete-nxml flymake flyspell json-mode popup ruby-mode company-jedi tide elm-mode monky)))
'(reb-re-syntax (quote string))
'(rmail-mail-new-frame t)
'(safe-local-variable-values
@ -92,9 +92,9 @@
'(show-paren-style (quote parenthesis))
'(tab-width 4)
'(tags-revert-without-query t)
'(tramp-completion-reread-directory-timeout nil nil (tramp))
'(tramp-completion-reread-directory-timeout nil)
'(tramp-default-method "sshx" nil (tramp))
'(tramp-use-ssh-controlmaster-options nil nil (tramp))
'(tramp-use-ssh-controlmaster-options nil)
'(transient-mark-mode t)
'(truncate-lines t)
'(typescript-indent-level 2)

View file

@ -114,6 +114,7 @@
(require 'ansi-color)
(when is-fb-environment
(require '50-arc))
(require 'ert) ;; I don't know, I started getting probs.
(prefer-coding-system 'utf-8)
@ -209,7 +210,9 @@
(setq initial-frame-alist
`((font . ,my-font-choice)
(width . 91)
(height . ,jd-frame-height)))))
(height . ,jd-frame-height)))
(use-package modus-operandi-theme :ensure)))
;; =================================================================
;; FUN WITH KEY BINDINGS! YAAAAYYY!!!
@ -729,9 +732,9 @@
:mode ("\\.org\\'" . org-mode)
:bind (("C-c l" . org-store-link)
("C-c a" . org-agenda))
:init
(add-hook 'org-mode-hook 'my-org-mode-hook)
:config
(add-hook 'org-mode-hook 'my-org-mode-hook)
;; I want a sane approach to multi-line emphasis, and this is the only way
;; to get it. Think about 10 lines.
(setcar (nthcdr 4 org-emphasis-regexp-components) 10)