[emacs] Stuff, theme
This commit is contained in:
parent
51e7a9c29d
commit
dd21501e53
2 changed files with 9 additions and 6 deletions
|
|
@ -64,7 +64,7 @@
|
||||||
((sequence "TODO" "|" "DONE" "ABANDONED" "DEFERRED"))))
|
((sequence "TODO" "|" "DONE" "ABANDONED" "DEFERRED"))))
|
||||||
'(package-selected-packages
|
'(package-selected-packages
|
||||||
(quote
|
(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))
|
'(reb-re-syntax (quote string))
|
||||||
'(rmail-mail-new-frame t)
|
'(rmail-mail-new-frame t)
|
||||||
'(safe-local-variable-values
|
'(safe-local-variable-values
|
||||||
|
|
@ -92,9 +92,9 @@
|
||||||
'(show-paren-style (quote parenthesis))
|
'(show-paren-style (quote parenthesis))
|
||||||
'(tab-width 4)
|
'(tab-width 4)
|
||||||
'(tags-revert-without-query t)
|
'(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-default-method "sshx" nil (tramp))
|
||||||
'(tramp-use-ssh-controlmaster-options nil nil (tramp))
|
'(tramp-use-ssh-controlmaster-options nil)
|
||||||
'(transient-mark-mode t)
|
'(transient-mark-mode t)
|
||||||
'(truncate-lines t)
|
'(truncate-lines t)
|
||||||
'(typescript-indent-level 2)
|
'(typescript-indent-level 2)
|
||||||
|
|
|
||||||
|
|
@ -114,6 +114,7 @@
|
||||||
(require 'ansi-color)
|
(require 'ansi-color)
|
||||||
(when is-fb-environment
|
(when is-fb-environment
|
||||||
(require '50-arc))
|
(require '50-arc))
|
||||||
|
(require 'ert) ;; I don't know, I started getting probs.
|
||||||
|
|
||||||
(prefer-coding-system 'utf-8)
|
(prefer-coding-system 'utf-8)
|
||||||
|
|
||||||
|
|
@ -209,7 +210,9 @@
|
||||||
(setq initial-frame-alist
|
(setq initial-frame-alist
|
||||||
`((font . ,my-font-choice)
|
`((font . ,my-font-choice)
|
||||||
(width . 91)
|
(width . 91)
|
||||||
(height . ,jd-frame-height)))))
|
(height . ,jd-frame-height)))
|
||||||
|
|
||||||
|
(use-package modus-operandi-theme :ensure)))
|
||||||
|
|
||||||
;; =================================================================
|
;; =================================================================
|
||||||
;; FUN WITH KEY BINDINGS! YAAAAYYY!!!
|
;; FUN WITH KEY BINDINGS! YAAAAYYY!!!
|
||||||
|
|
@ -729,9 +732,9 @@
|
||||||
:mode ("\\.org\\'" . org-mode)
|
:mode ("\\.org\\'" . org-mode)
|
||||||
:bind (("C-c l" . org-store-link)
|
:bind (("C-c l" . org-store-link)
|
||||||
("C-c a" . org-agenda))
|
("C-c a" . org-agenda))
|
||||||
:init
|
|
||||||
(add-hook 'org-mode-hook 'my-org-mode-hook)
|
|
||||||
:config
|
: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
|
;; I want a sane approach to multi-line emphasis, and this is the only way
|
||||||
;; to get it. Think about 10 lines.
|
;; to get it. Think about 10 lines.
|
||||||
(setcar (nthcdr 4 org-emphasis-regexp-components) 10)
|
(setcar (nthcdr 4 org-emphasis-regexp-components) 10)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue