-
This commit is contained in:
@@ -158,7 +158,8 @@
|
||||
'((emacs-lisp . t)
|
||||
(lisp . t)
|
||||
(python . t)
|
||||
(sql . t)))
|
||||
(sql . t)
|
||||
(clojure . t)))
|
||||
|
||||
(push '("conf-unix" . conf-unix) org-src-lang-modes))
|
||||
|
||||
@@ -170,7 +171,8 @@
|
||||
(add-to-list 'org-structure-template-alist '("sh" . "src shell"))
|
||||
(add-to-list 'org-structure-template-alist '("el" . "src emacs-lisp"))
|
||||
(add-to-list 'org-structure-template-alist '("sql" . "src sql"))
|
||||
(add-to-list 'org-structure-template-alist '("py" . "src python")))
|
||||
(add-to-list 'org-structure-template-alist '("py" . "src python"))
|
||||
(add-to-list 'org-structure-template-alist '("clj" . "src clojure")))
|
||||
|
||||
;; (use-package mu4e
|
||||
;; :config
|
||||
|
||||
@@ -74,7 +74,7 @@
|
||||
;;grammar ; tasing grammar mistake every you make
|
||||
|
||||
:tools
|
||||
ansible
|
||||
;;ansible
|
||||
;;biblio ; Writes a PhD for you (citation needed)
|
||||
;;debugger ; FIXME stepping through code, to help you add bugs
|
||||
;;direnv
|
||||
@@ -104,7 +104,7 @@
|
||||
;;agda ; types of types of types of types...
|
||||
;;beancount ; mind the GAAP
|
||||
;;cc ; C > C++ == 1
|
||||
;;clojure ; java with a lisp
|
||||
clojure ; java with a lisp
|
||||
;;common-lisp ; if you've seen one lisp, you've seen them all
|
||||
;;coq ; proofs-as-programs
|
||||
;;crystal ; ruby at the speed of c
|
||||
@@ -164,7 +164,7 @@
|
||||
;;zig ; C, but simpler
|
||||
|
||||
:email
|
||||
(mu4e +org +gmail)
|
||||
;;(mu4e +org +gmail)
|
||||
;;notmuch
|
||||
;;(wanderlust +gmail)
|
||||
|
||||
|
||||
@@ -33,11 +33,12 @@ c.content.javascript.enabled = False
|
||||
c.downloads.location.directory = "~/downloads"
|
||||
c.editor.command = [ "alacritty", "-e", "vim", "{}" ]
|
||||
c.editor.encoding = "utf-8"
|
||||
c.scrolling.smooth = True
|
||||
|
||||
c.url.searchengines = {
|
||||
"DEFAULT" : "https://search.brave.com/search?q={}",
|
||||
"DEFAULT" : "https://duckduckgo.com/?q={}",
|
||||
}
|
||||
|
||||
c.url.start_pages = [ "https://search.brave.com" ]
|
||||
c.url.start_pages = [ "https://html.duckduckgo.com" ]
|
||||
|
||||
config.bind('<Ctrl-Shift-y>', 'hint links spawn --detach mpv --force-window yes {hint-url}')
|
||||
|
||||
26
emacs.org
26
emacs.org
@@ -200,7 +200,8 @@ Creates margins in Org mode to make it more pleasant to look at.
|
||||
'((emacs-lisp . t)
|
||||
(lisp . t)
|
||||
(python . t)
|
||||
(sql . t)))
|
||||
(sql . t)
|
||||
(clojure . t)))
|
||||
|
||||
(push '("conf-unix" . conf-unix) org-src-lang-modes))
|
||||
|
||||
@@ -212,14 +213,15 @@ Creates margins in Org mode to make it more pleasant to look at.
|
||||
(add-to-list 'org-structure-template-alist '("sh" . "src shell"))
|
||||
(add-to-list 'org-structure-template-alist '("el" . "src emacs-lisp"))
|
||||
(add-to-list 'org-structure-template-alist '("sql" . "src sql"))
|
||||
(add-to-list 'org-structure-template-alist '("py" . "src python")))
|
||||
(add-to-list 'org-structure-template-alist '("py" . "src python"))
|
||||
(add-to-list 'org-structure-template-alist '("clj" . "src clojure")))
|
||||
#+end_src
|
||||
|
||||
#+RESULTS:
|
||||
: ((:results . output))
|
||||
|
||||
** Email (mu4e)
|
||||
Not using this as much atm.
|
||||
Not using this much atm.
|
||||
#+begin_src emacs-lisp :tangle ~/opalfiles/.config/doom/config.el
|
||||
;; (use-package mu4e
|
||||
;; :config
|
||||
@@ -270,18 +272,6 @@ Rss reader
|
||||
(setq elfeed-search-filter "@1-month-ago +unread"))
|
||||
#+end_src
|
||||
|
||||
** Function
|
||||
#+begin_src emacs-lisp
|
||||
(defun useless-anon/dired-toggle-mark ()
|
||||
(interactive)
|
||||
(let ((file-at-point (dired-get-filename)))
|
||||
(if (member file-at-point
|
||||
(dired-map-over-marks (dired-get-filename) 'marked))
|
||||
(dired-unmark file-at-point)
|
||||
(dired-mark file-at-point))))
|
||||
|
||||
(define-key dired-mode-map (kbd "M") #'useless-anon/dired-toggle-mark)
|
||||
#+end_src
|
||||
* Package.el
|
||||
#+begin_src emacs-lisp :tangle ~/opalfiles/.config/doom/packages.el
|
||||
(package! org-bullets)
|
||||
@@ -369,7 +359,7 @@ Rss reader
|
||||
;;grammar ; tasing grammar mistake every you make
|
||||
|
||||
:tools
|
||||
ansible
|
||||
;;ansible
|
||||
;;biblio ; Writes a PhD for you (citation needed)
|
||||
;;debugger ; FIXME stepping through code, to help you add bugs
|
||||
;;direnv
|
||||
@@ -399,7 +389,7 @@ Rss reader
|
||||
;;agda ; types of types of types of types...
|
||||
;;beancount ; mind the GAAP
|
||||
;;cc ; C > C++ == 1
|
||||
;;clojure ; java with a lisp
|
||||
clojure ; java with a lisp
|
||||
;;common-lisp ; if you've seen one lisp, you've seen them all
|
||||
;;coq ; proofs-as-programs
|
||||
;;crystal ; ruby at the speed of c
|
||||
@@ -459,7 +449,7 @@ Rss reader
|
||||
;;zig ; C, but simpler
|
||||
|
||||
:email
|
||||
(mu4e +org +gmail)
|
||||
;;(mu4e +org +gmail)
|
||||
;;notmuch
|
||||
;;(wanderlust +gmail)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user