mirror of
https://codeberg.org/hyperreal/doom-emacs-config
synced 2024-11-25 11:53:42 +01:00
Update
This commit is contained in:
parent
697b11dd51
commit
70b0533566
121
config.el
121
config.el
@ -15,7 +15,7 @@
|
|||||||
;; This sets the frame dimensions and position take up the right half
|
;; This sets the frame dimensions and position take up the right half
|
||||||
;; of the screen when the host is default.ravenwatch, which has an
|
;; of the screen when the host is default.ravenwatch, which has an
|
||||||
;; ultra-wide monitor.
|
;; ultra-wide monitor.
|
||||||
(when (string= (system-name) "default.ravenwatch")
|
(when (string= (system-name) "ravenwatch")
|
||||||
(setq default-frame-alist
|
(setq default-frame-alist
|
||||||
'((height . 55)
|
'((height . 55)
|
||||||
(width . 154)
|
(width . 154)
|
||||||
@ -26,7 +26,7 @@
|
|||||||
|
|
||||||
;; This sets the frame to be fullscreen and maximized when the host is
|
;; This sets the frame to be fullscreen and maximized when the host is
|
||||||
;; default.evergloam, which is my 15-inch screen laptop.
|
;; default.evergloam, which is my 15-inch screen laptop.
|
||||||
(when (string= (system-name) "default.evergloam")
|
(when (string= (system-name) "evergloam")
|
||||||
(add-to-list 'default-frame-alist '(fullscreen . maximized)))
|
(add-to-list 'default-frame-alist '(fullscreen . maximized)))
|
||||||
|
|
||||||
;; Set fonts
|
;; Set fonts
|
||||||
@ -125,10 +125,10 @@ Version 2015-08-22"
|
|||||||
(delete-region (point-min) (point-max)))))
|
(delete-region (point-min) (point-max)))))
|
||||||
|
|
||||||
;; open URL in Firefox/LibreWolf
|
;; open URL in Firefox/LibreWolf
|
||||||
(defun browse-host-web (url &rest ignored)
|
(defun browse-host-web (url)
|
||||||
"Browse URL with Firefox/LibreWolf"
|
"Browse URL with Firefox/LibreWolf"
|
||||||
(interactive "sURL: ")
|
(interactive "sURL: ")
|
||||||
(shell-command (concat "distrobox-host-exec firefox " url)))
|
(shell-command (concat "firefox " url)))
|
||||||
|
|
||||||
(setq browse-url-browser-function 'browse-host-web)
|
(setq browse-url-browser-function 'browse-host-web)
|
||||||
|
|
||||||
@ -204,6 +204,7 @@ If point was already at that position, move point to beginning of line."
|
|||||||
(setq org-support-shift-select t)
|
(setq org-support-shift-select t)
|
||||||
|
|
||||||
;; org-mode tags
|
;; org-mode tags
|
||||||
|
;; I hardly use these but whatever
|
||||||
(setq org-tag-alist (quote (("@archiving" .?a)
|
(setq org-tag-alist (quote (("@archiving" .?a)
|
||||||
("@calendar" .?t)
|
("@calendar" .?t)
|
||||||
("@config" . ?c)
|
("@config" . ?c)
|
||||||
@ -239,7 +240,8 @@ If point was already at that position, move point to beginning of line."
|
|||||||
|
|
||||||
(setq org-refile-targets
|
(setq org-refile-targets
|
||||||
`((("~/sync/org/inbox.org"
|
`((("~/sync/org/inbox.org"
|
||||||
"~/sync/org/grocery.org")
|
"~/sync/org/computing.org"
|
||||||
|
"~/sync/org/todos.org")
|
||||||
. (:maxlevel . 5))))
|
. (:maxlevel . 5))))
|
||||||
|
|
||||||
;; org-todo-keywords
|
;; org-todo-keywords
|
||||||
@ -279,65 +281,6 @@ If point was already at that position, move point to beginning of line."
|
|||||||
(setq org-roam-directory "~/sync/org-roam")
|
(setq org-roam-directory "~/sync/org-roam")
|
||||||
(org-roam-db-autosync-mode)
|
(org-roam-db-autosync-mode)
|
||||||
|
|
||||||
;; org-roam-capture-template
|
|
||||||
(setq org-roam-capture-templates
|
|
||||||
'(("m" "main" plain
|
|
||||||
"%?"
|
|
||||||
:if-new (file+head "main/${slug}.org"
|
|
||||||
"#+title: ${title}\n")
|
|
||||||
:immediate-finish t
|
|
||||||
:unnarrowed t)
|
|
||||||
("r" "reference" plain
|
|
||||||
"%?"
|
|
||||||
:if-new (file+head "reference/${title}.org"
|
|
||||||
"#+title: ${title}\n")
|
|
||||||
:immediate-finish t
|
|
||||||
:unnarrowed t)
|
|
||||||
("s" "self" plain
|
|
||||||
"%?"
|
|
||||||
:if-new (file+head "self/${slug}.org"
|
|
||||||
"#+title: ${title}\n#+filetags: :self:\n")
|
|
||||||
:unnarrowed t)
|
|
||||||
("S" "self-entry" entry
|
|
||||||
"* %U\n%?"
|
|
||||||
:target (file "self/${slug}.org")
|
|
||||||
:empty-lines 1
|
|
||||||
:unnarrowed t)
|
|
||||||
("c" "cookbook" plain
|
|
||||||
"* %^{Recipe title}\n :PROPERTIES:\n :source-url:%?\n :servings:\n :prep-time:\n :cook-time:\n :ready-in:\n :END:\n** Ingredients\n \n** Directions\n\n"
|
|
||||||
:if-new (file "recipes/${title}.org")
|
|
||||||
:unnarrowed t)))
|
|
||||||
|
|
||||||
;; org-capture-templates
|
|
||||||
(setq org-capture-templates
|
|
||||||
'(("p" "Inbox" entry (file+headline "~/sync/org/inbox.org" "Inbox")
|
|
||||||
"* %^{Title}\nSource: %u, %c\n #+BEGIN_QUOTE\n%i\n#+END_QUOTE\n\n%?"
|
|
||||||
:empty-lines-before 1
|
|
||||||
:unnarrowed t
|
|
||||||
:immediate-finish t)
|
|
||||||
("L" "Link" entry (file+headline "~/sync/org/inbox.org" "Inbox")
|
|
||||||
"* %? [[%:link][%:description]] \nCaptured on: %U"
|
|
||||||
:empty-lines-before 1
|
|
||||||
:unnarrowed t
|
|
||||||
:immediate-finish t)
|
|
||||||
("d" "Calendar" entry (file "~/sync/org/calendar.org")
|
|
||||||
"* TODO %?"
|
|
||||||
:empty-lines-before 1
|
|
||||||
:unnarrowed t)
|
|
||||||
("j" "Journal" entry (file+olp+datetree "~/sync/org/journal.org")
|
|
||||||
"* %U\n%?"
|
|
||||||
:empty-lines-before 1
|
|
||||||
:unnarrowed t)
|
|
||||||
("r" "Reading" entry (file "~/sync/org/reading.org")
|
|
||||||
"* %a\n%U\n%^{PROMPT}"
|
|
||||||
:empty-lines-before 1
|
|
||||||
:unnarrowed t
|
|
||||||
:immediate-finish t)))
|
|
||||||
|
|
||||||
(defun hyperreal/org-capture-slipbox ()
|
|
||||||
(interactive)
|
|
||||||
(org-capture nil "s"))
|
|
||||||
|
|
||||||
|
|
||||||
;;;; python-mode
|
;;;; python-mode
|
||||||
|
|
||||||
@ -436,8 +379,6 @@ If point was already at that position, move point to beginning of line."
|
|||||||
(cond
|
(cond
|
||||||
((string-equal "*" (substring (buffer-name) 0 1))
|
((string-equal "*" (substring (buffer-name) 0 1))
|
||||||
'("Emacs"))
|
'("Emacs"))
|
||||||
((eq major-mode 'erc-mode)
|
|
||||||
'("ERC"))
|
|
||||||
((memq major-mode '(org-mode
|
((memq major-mode '(org-mode
|
||||||
org-agenda-clockreport-mode
|
org-agenda-clockreport-mode
|
||||||
org-src-mode
|
org-src-mode
|
||||||
@ -507,3 +448,51 @@ and switch to it."
|
|||||||
(rename-buffer mvterm-buffer-name)
|
(rename-buffer mvterm-buffer-name)
|
||||||
(message "Created and started: %s" mvterm-buffer-name)
|
(message "Created and started: %s" mvterm-buffer-name)
|
||||||
(switch-to-buffer mvterm-buffer-name)))
|
(switch-to-buffer mvterm-buffer-name)))
|
||||||
|
|
||||||
|
|
||||||
|
;;;; org-publish
|
||||||
|
(require 'ox-gemini)
|
||||||
|
|
||||||
|
(setq org-publish-project-alist
|
||||||
|
'(("techne"
|
||||||
|
:base-directory "~/sync/sites/techne-org"
|
||||||
|
:base-extension "org"
|
||||||
|
:publishing-directory "/sshx:jas@192.168.2.102:/home/jas/public/techne"
|
||||||
|
:publishing-function org-html-publish-to-html
|
||||||
|
:headline-levels 3
|
||||||
|
:section-numbers nil
|
||||||
|
:with-toc nil
|
||||||
|
:html-head "<link rel=\"stylesheet\"
|
||||||
|
href=\"style.css\"
|
||||||
|
type=\"text/css\"/>"
|
||||||
|
:html-postamble t
|
||||||
|
:html-postamble-format (("en"
|
||||||
|
"<p class=\"author\">Collected with ❤ by %a</p>
|
||||||
|
<p class=\"date\">Last updated: %T</p>
|
||||||
|
<p class=\"creator\">%c</p>
|
||||||
|
<p class=\"validation\">%v</p>")))
|
||||||
|
("gemini"
|
||||||
|
:base-directory "~/sync/sites/techne-org"
|
||||||
|
:base-extension "org"
|
||||||
|
:publishing-directory "/sshx:jas@192.168.2.102:/home/jas/public/gemini/hyperreal.coffee/techne"
|
||||||
|
:publishing-function org-gemini-publish-to-gemini)))
|
||||||
|
|
||||||
|
(setq org-publish-use-timestamps-flag nil)
|
||||||
|
|
||||||
|
|
||||||
|
;;;; nushell
|
||||||
|
|
||||||
|
(add-to-list 'auto-mode-alist '("\\.nu\\'" . nushell-ts-mode))
|
||||||
|
|
||||||
|
|
||||||
|
;;;; tramp-mode
|
||||||
|
|
||||||
|
(require 'tramp)
|
||||||
|
|
||||||
|
;; change the default remote shell
|
||||||
|
(setq host-list '("/sshx:jas@192.168.1.12:"
|
||||||
|
"/sshx:jas@192.168.2.102:"))
|
||||||
|
|
||||||
|
(dolist (host host-list) (add-to-list 'tramp-connection-properties
|
||||||
|
(list (regexp-quote host)
|
||||||
|
"remote-shell" "/bin/bash")))
|
||||||
|
27
init.el
27
init.el
@ -34,16 +34,16 @@
|
|||||||
;;doom-quit ; DOOM quit-message prompts when you quit Emacs
|
;;doom-quit ; DOOM quit-message prompts when you quit Emacs
|
||||||
(emoji +unicode) ; 🙂
|
(emoji +unicode) ; 🙂
|
||||||
hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW
|
hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW
|
||||||
hydra
|
;;hydra
|
||||||
;;indent-guides ; highlighted indent columns
|
;;indent-guides ; highlighted indent columns
|
||||||
ligatures ; ligatures and symbols to make your code pretty again
|
;;ligatures ; ligatures and symbols to make your code pretty again
|
||||||
;;minimap ; show a map of the code on the side
|
;;minimap ; show a map of the code on the side
|
||||||
modeline ; snazzy, Atom-inspired modeline, plus API
|
modeline ; snazzy, Atom-inspired modeline, plus API
|
||||||
;;nav-flash ; blink cursor line after big motions
|
;;nav-flash ; blink cursor line after big motions
|
||||||
;;neotree ; a project drawer, like NERDTree for vim
|
;;neotree ; a project drawer, like NERDTree for vim
|
||||||
ophints ; highlight the region an operation acts on
|
ophints ; highlight the region an operation acts on
|
||||||
(popup +defaults) ; tame sudden yet inevitable temporary windows
|
(popup +defaults) ; tame sudden yet inevitable temporary windows
|
||||||
tabs ; a tab bar for Emacs
|
;;tabs ; a 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
|
||||||
(vc-gutter +pretty) ; vcs diff in the fringe
|
(vc-gutter +pretty) ; vcs diff in the fringe
|
||||||
@ -63,7 +63,7 @@
|
|||||||
;;objed ; text object editing for the innocent
|
;;objed ; text object editing for the innocent
|
||||||
;;parinfer ; turn lisp into python, sort of
|
;;parinfer ; turn lisp into python, sort of
|
||||||
;;rotate-text ; cycle region at point between text candidates
|
;;rotate-text ; cycle region at point between text candidates
|
||||||
;; snippets ; my elves. They type so I don't have to
|
snippets ; my elves. They type so I don't have to
|
||||||
;;word-wrap ; soft wrapping with language-aware indent
|
;;word-wrap ; soft wrapping with language-aware indent
|
||||||
|
|
||||||
:emacs
|
:emacs
|
||||||
@ -77,7 +77,7 @@
|
|||||||
;;eshell ; the elisp shell that works everywhere
|
;;eshell ; the elisp shell that works everywhere
|
||||||
;;shell ; simple shell REPL for Emacs
|
;;shell ; simple shell REPL for Emacs
|
||||||
;;term ; basic terminal emulator for Emacs
|
;;term ; basic terminal emulator for Emacs
|
||||||
vterm ; the best terminal emulation in Emacs
|
;;vterm ; the best terminal emulation in Emacs
|
||||||
|
|
||||||
:checkers
|
:checkers
|
||||||
syntax ; tasing you for every semicolon you forget
|
syntax ; tasing you for every semicolon you forget
|
||||||
@ -90,15 +90,14 @@
|
|||||||
;;collab ; buffers with friends
|
;;collab ; buffers with friends
|
||||||
;;debugger ; FIXME stepping through code, to help you add bugs
|
;;debugger ; FIXME stepping through code, to help you add bugs
|
||||||
;;direnv
|
;;direnv
|
||||||
docker
|
;;docker
|
||||||
;;editorconfig ; let someone else argue about tabs vs spaces
|
;;editorconfig ; let someone else argue about tabs vs spaces
|
||||||
;;ein ; tame Jupyter notebooks with emacs
|
;;ein ; tame Jupyter notebooks with emacs
|
||||||
(eval +overlay) ; run code, run (also, repls)
|
(eval +overlay) ; run code, run (also, repls)
|
||||||
gist ; interacting with github gists
|
|
||||||
lookup ; navigate your code and its documentation
|
lookup ; navigate your code and its documentation
|
||||||
lsp ; M-x vscode
|
lsp ; M-x vscode
|
||||||
magit ; a git porcelain for Emacs
|
magit ; a git porcelain for Emacs
|
||||||
;;make ; run make tasks from Emacs
|
make ; run make tasks from Emacs
|
||||||
pass ; password manager for nerds
|
pass ; password manager for nerds
|
||||||
pdf ; pdf enhancements
|
pdf ; pdf enhancements
|
||||||
;;prodigy ; FIXME managing external services & code builders
|
;;prodigy ; FIXME managing external services & code builders
|
||||||
@ -110,7 +109,7 @@
|
|||||||
;;upload ; map local to remote projects via ssh/ftp
|
;;upload ; map local to remote projects via ssh/ftp
|
||||||
|
|
||||||
:os
|
:os
|
||||||
(:if IS-MAC macos) ; improve compatibility with macOS
|
(:if (featurep :system 'macos) macos) ; improve compatibility with macOS
|
||||||
;;tty ; improve the terminal Emacs experience
|
;;tty ; improve the terminal Emacs experience
|
||||||
|
|
||||||
:lang
|
:lang
|
||||||
@ -122,7 +121,7 @@
|
|||||||
;;coq ; proofs-as-programs
|
;;coq ; proofs-as-programs
|
||||||
;;crystal ; ruby at the speed of c
|
;;crystal ; ruby at the speed of c
|
||||||
;;csharp ; unity, .NET, and mono shenanigans
|
;;csharp ; unity, .NET, and mono shenanigans
|
||||||
data ; config/data formats
|
;;data ; config/data formats
|
||||||
;;(dart +flutter) ; paint ui and not much else
|
;;(dart +flutter) ; paint ui and not much else
|
||||||
;;dhall
|
;;dhall
|
||||||
;;elixir ; erlang done right
|
;;elixir ; erlang done right
|
||||||
@ -152,13 +151,13 @@
|
|||||||
;;lua ; one-based indices? one-based indices
|
;;lua ; one-based indices? one-based indices
|
||||||
markdown ; writing docs for people to ignore
|
markdown ; writing docs for people to ignore
|
||||||
;;nim ; python + lisp at the speed of c
|
;;nim ; python + lisp at the speed of c
|
||||||
nix ; I hereby declare "nix geht mehr!"
|
;;nix ; I hereby declare "nix geht mehr!"
|
||||||
;;ocaml ; an objective camel
|
;;ocaml ; an objective camel
|
||||||
org ; organize your plain life in plain text
|
org ; organize your plain life in plain text
|
||||||
;;php ; perl's insecure younger brother
|
;;php ; perl's insecure younger brother
|
||||||
;;plantuml ; diagrams for confusing people more
|
;;plantuml ; diagrams for confusing people more
|
||||||
;;purescript ; javascript, but functional
|
;;purescript ; javascript, but functional
|
||||||
(python +lsp +pyright) ; beautiful is better than ugly
|
python ; beautiful is better than ugly
|
||||||
;;qt ; the 'cutest' gui framework ever
|
;;qt ; the 'cutest' gui framework ever
|
||||||
;;racket ; a DSL for DSLs
|
;;racket ; a DSL for DSLs
|
||||||
;;raku ; the artist formerly known as perl6
|
;;raku ; the artist formerly known as perl6
|
||||||
@ -173,14 +172,14 @@
|
|||||||
;;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
|
||||||
yaml ; JSON, but readable
|
yaml ; JSON, but readable
|
||||||
;;zig ; C, but simpler
|
;;zig ; C, but simpler
|
||||||
|
|
||||||
:email
|
:email
|
||||||
;;(mu4e +org +gmail)
|
;;(mu4e +org +gmail)
|
||||||
;;notmuch
|
;;notmuch
|
||||||
;; (wanderlust)
|
;;(wanderlust +gmail)
|
||||||
|
|
||||||
:app
|
:app
|
||||||
;;calendar
|
;;calendar
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
(package! apheleia)
|
(package! apheleia)
|
||||||
(package! autothemer)
|
(package! autothemer)
|
||||||
(package! catppuccin-theme)
|
(package! catppuccin-theme)
|
||||||
|
(package! dockerfile-mode)
|
||||||
(package! elfeed)
|
(package! elfeed)
|
||||||
(package! elfeed-protocol)
|
(package! elfeed-protocol)
|
||||||
(package! elpher)
|
(package! elpher)
|
||||||
@ -24,11 +25,13 @@
|
|||||||
(package! just-mode)
|
(package! just-mode)
|
||||||
(package! license-templates)
|
(package! license-templates)
|
||||||
(package! multi-vterm)
|
(package! multi-vterm)
|
||||||
(package! nov)
|
(package! nushell-ts-mode :recipe
|
||||||
|
(:host github :repo "herbertjones/nushell-ts-mode"))
|
||||||
(package! org-roam)
|
(package! org-roam)
|
||||||
(package! org-static-blog)
|
|
||||||
(package! org-superstar)
|
(package! org-superstar)
|
||||||
|
(package! ox-gemini)
|
||||||
(package! python-docstring)
|
(package! python-docstring)
|
||||||
(package! shell-pop)
|
(package! shell-pop)
|
||||||
(package! systemd)
|
(package! systemd)
|
||||||
|
(package! tramp)
|
||||||
(package! undo-tree)
|
(package! undo-tree)
|
||||||
|
Loading…
Reference in New Issue
Block a user