update doom config
This commit is contained in:
parent
eb64f1966f
commit
4eafbae825
10 changed files with 114 additions and 205 deletions
|
@ -1,4 +1,3 @@
|
||||||
LICENSE
|
LICENSE
|
||||||
cool_cli_tools.md
|
misc/
|
||||||
packer_compiled.lua
|
.gitignore
|
||||||
plugin/
|
|
||||||
|
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
.DS_Store
|
|
@ -1,6 +0,0 @@
|
||||||
- [zoxide](https://github.com/ajeetdsouza/zoxide)
|
|
||||||
- [bat](https://github.com/sharkdp/bat)
|
|
||||||
- [tokei](https://github.com/XAMPPRocky/tokei)
|
|
||||||
- rg of course
|
|
||||||
- hexyl (https://github.com/sharkdp/hexyl)
|
|
||||||
- exa
|
|
|
@ -40,6 +40,7 @@ setpath ~/.radicle/bin
|
||||||
setpath ~/.edgedb/bin
|
setpath ~/.edgedb/bin
|
||||||
setpath ~/.fly/bin
|
setpath ~/.fly/bin
|
||||||
setpath ~/.nimble/bin
|
setpath ~/.nimble/bin
|
||||||
|
setpath ~/Projects/go/bin
|
||||||
|
|
||||||
# zoxide setup
|
# zoxide setup
|
||||||
zoxide init fish | source
|
zoxide init fish | source
|
||||||
|
@ -70,6 +71,7 @@ set -x TZ_LIST "Europe/Berlin;Berlin,America/New_York;US East,America/Los_Angele
|
||||||
# General Aliases
|
# General Aliases
|
||||||
alias editconfig "chezmoi edit ~/.config/fish/config.fish; and chezmoi apply; and source ~/.config/fish/config.fish"
|
alias editconfig "chezmoi edit ~/.config/fish/config.fish; and chezmoi apply; and source ~/.config/fish/config.fish"
|
||||||
alias getsshkey "cat ~/.ssh/id_ed25519.pub -p --color never"
|
alias getsshkey "cat ~/.ssh/id_ed25519.pub -p --color never"
|
||||||
|
alias doco "docker-compose"
|
||||||
alias j "z"
|
alias j "z"
|
||||||
alias cat "bat"
|
alias cat "bat"
|
||||||
alias c "cargo"
|
alias c "cargo"
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
jorgebucaran/fisher
|
jorgebucaran/fisher
|
||||||
jorgebucaran/fish-nvm
|
|
||||||
franciscolourenco/done
|
franciscolourenco/done
|
||||||
laughedelic/pisces
|
laughedelic/pisces
|
||||||
oh-my-fish/plugin-foreign-env
|
oh-my-fish/plugin-foreign-env
|
||||||
|
|
|
@ -1,169 +1,44 @@
|
||||||
;;; ~/.doom.d/config.el -*- lexical-binding: t; -*-
|
;;; $DOOMDIR/config.el -*- lexical-binding: t; -*-
|
||||||
|
|
||||||
(load-theme 'doom-solarized-dark-high-contrast t)
|
;; Place your private configuration here! Remember, you do not need to run 'doom
|
||||||
(setq doom-solarized-dark-high-contrast-brighter-comments t)
|
;; sync' after modifying this file!
|
||||||
|
|
||||||
;; Set to 2 spaces
|
|
||||||
(setq default-tab-width 2)
|
|
||||||
(setq tab-width 2)
|
|
||||||
(setq web-mode-markup-indent-offset 2)
|
|
||||||
(setq web-mode-css-indent-offset 2)
|
|
||||||
(setq web-mode-code-indent-offset 2)
|
|
||||||
(setq js2-mode-hook
|
|
||||||
'(lambda () (progn
|
|
||||||
(set-variable 'js2-basic-offset 2))))
|
|
||||||
(setq css-mode-hook
|
|
||||||
'(lambda () (progn
|
|
||||||
(set-variable 'css-indent-offset 2))))
|
|
||||||
(setq typescript-mode-hook
|
|
||||||
'(lambda () (progn
|
|
||||||
(set-variable 'typescript-indent-level 2))))
|
|
||||||
|
|
||||||
;; Maximize the window upon startup
|
;; Some functionality uses this to identify you, e.g. GPG configuration, email
|
||||||
|
;; clients, file templates and snippets. It is optional.
|
||||||
|
(setq user-full-name "mokou"
|
||||||
|
user-mail-address "mokou@fastmail.com")
|
||||||
|
|
||||||
|
;; Maximize the window after startup
|
||||||
(add-to-list 'default-frame-alist '(fullscreen . maximized))
|
(add-to-list 'default-frame-alist '(fullscreen . maximized))
|
||||||
|
|
||||||
(setq doom-font (font-spec :family "Fantasque Sans Mono" :size 17))
|
(setq doom-font (font-spec :family "JetBrains Mono" :size 14))
|
||||||
|
|
||||||
(when (memq window-system '(mac ns x))
|
;; There are two ways to load a theme. Both assume the theme is installed and
|
||||||
(exec-path-from-shell-initialize))
|
;; available. You can either set `doom-theme' or manually load a theme with the
|
||||||
|
;; `load-theme' function. This is the default:
|
||||||
|
(setq doom-theme 'tango)
|
||||||
|
|
||||||
;; Configure some lsp-mode stuff
|
;; This determines the style of line numbers in effect. If set to `nil', line
|
||||||
(after! lsp-mode
|
;; numbers are disabled. For relative line numbers, set this to `relative'.
|
||||||
(setq lsp-ui-sideline-show-code-actions nil))
|
(setq display-line-numbers-type t)
|
||||||
|
|
||||||
;; Enable prettier in RJSX-mode
|
;; If you use `org' and don't want your org files in the default location below,
|
||||||
(add-hook 'rjsx-mode-hook 'prettier-js-mode)
|
;; change `org-directory'. It must be set before org loads!
|
||||||
(add-hook 'typescript-mode-hook 'prettier-js-mode)
|
(setq org-directory "~/Org/")
|
||||||
(add-hook 'typescript-tsx-mode-hook 'prettier-js-mode)
|
|
||||||
|
|
||||||
;; Add prolog support for .dl files
|
;; Set default tab width to 2
|
||||||
(add-to-list 'auto-mode-alist '("\\.dl\\'" . prolog-mode))
|
(setq tab-width 2)
|
||||||
|
|
||||||
;; Enable Mercurial support for git-gutter
|
;; Set a custom splash screen
|
||||||
(setq git-gutter:handled-backends '(git hg))
|
(setq fancy-splash-image "~/.local/share/chezmoi/misc/emacs-splash.png")
|
||||||
|
|
||||||
;; Load auth keys from .authinfo
|
;; Configure email account
|
||||||
(setq auth-sources '("~/.authinfo"))
|
(set-email-account! "fastmail.com"
|
||||||
|
'((mu4e-sent-folder . "/fastmail/Sent")
|
||||||
;; Enable editorconfig
|
(mu4e-drafts-folder . "/fastmail/Drafts")
|
||||||
(editorconfig-mode 1)
|
(mu4e-trash-folder . "/fastmail/Trash")
|
||||||
|
(mu4e-refile-folder . "/fastmail/Archive")
|
||||||
;; mu4e config
|
(smtpmail-smtp-user . "mokou@fastmail.com")
|
||||||
(set-email-account! "posteo"
|
(user-mail-address . "mokou@fastmail.com"))
|
||||||
'((mu4e-sent-folder . "/Sent")
|
|
||||||
(mu4e-drafts-folder . "/Drafts")
|
|
||||||
(mu4e-trash-folder . "/Trash")
|
|
||||||
(mu4e-refile-folder . "/INBOX")
|
|
||||||
(smtpmail-smtp-user . "mokou@posteo.net")
|
|
||||||
(user-mail-address . "mokou@posteo.de"))
|
|
||||||
t)
|
t)
|
||||||
(map! :map global-map :leader "M" 'mu4e)
|
|
||||||
;; use https://github.com/grobian/html2text
|
|
||||||
(setq mu4e-html2text-command "html2text")
|
|
||||||
|
|
||||||
(setq rustic-lsp-server 'rls)
|
|
||||||
|
|
||||||
;; Org configuration
|
|
||||||
(after! org
|
|
||||||
(add-to-list 'org-modules 'org-habit)
|
|
||||||
(setq-default org-directory "~/code/personal/org")
|
|
||||||
(setq-default org-default-notes-file "~/code/personal/org/inbox.org")
|
|
||||||
(setq-default org-todo-keywords
|
|
||||||
(quote ((sequence "TODO(t)" "DONE(d)" "WAITING(w@/!)"))))
|
|
||||||
(setq-default org-todo-keyword-faces
|
|
||||||
(quote (("TODO" :foreground "tomato" :weight bold)
|
|
||||||
("DONE" :foreground "forest green" :weight bold)
|
|
||||||
("WAITING" :foreground "chocolate" :weight bold))))
|
|
||||||
(setq org-capture-templates
|
|
||||||
(quote (("t" "todo" entry (file "~/code/personal/org/inbox.org")
|
|
||||||
"* TODO %?\n%U\n" :clock-in t :clock-resume t)
|
|
||||||
("n" "note" entry (file "~/code/personal/org/inbox.org")
|
|
||||||
"* %? :NOTE:\n%U\n%a\n" :clock-in t :clock-resume t))))
|
|
||||||
(setq org-refile-targets '((nil :maxlevel . 9)
|
|
||||||
(org-agenda-files :maxlevel . 9)))
|
|
||||||
(org-clock-persistence-insinuate)
|
|
||||||
(setq org-clock-in-switch-to-state 'cf/clock-in-to-next)
|
|
||||||
(setq org-clock-into-drawer t)
|
|
||||||
(setq org-clock-out-remove-zero-time-clocks t)
|
|
||||||
(setq org-clock-out-when-done t)
|
|
||||||
(setq org-clock-persist t)
|
|
||||||
(setq org-clock-auto-clock-resolution (quote when-no-clock-is-running))
|
|
||||||
(setq org-clock-report-include-clocking-task t)
|
|
||||||
(setq org-agenda-dim-blocked-tasks nil)
|
|
||||||
(setq org-agenda-compact-blocks t)
|
|
||||||
(setq org-archive-location "~/code/personal/org/_archive.org::")
|
|
||||||
(setq org-agenda-custom-commands
|
|
||||||
(quote ((" " "Agenda"
|
|
||||||
((agenda "" nil)
|
|
||||||
(tags "REFILE"
|
|
||||||
((org-agenda-overriding-header "Tasks to Refile")
|
|
||||||
(org-tags-match-list-sublevels nil)))
|
|
||||||
(tags-todo "-CANCELLED+WAITING|HOLD/!"
|
|
||||||
((org-agenda-overriding-header (concat "Waiting Tasks"))
|
|
||||||
(org-agenda-skip-function 'cf/skip-non-tasks)
|
|
||||||
(org-tags-match-list-sublevels nil)
|
|
||||||
(org-agenda-todo-ignore-scheduled cf/hide-scheduled-and-waiting-next-tasks)
|
|
||||||
(org-agenda-todo-ignore-deadlines cf/hide-scheduled-and-waiting-next-tasks))))
|
|
||||||
nil)))))
|
|
||||||
|
|
||||||
(map! :map global-map :leader "a" 'org-agenda)
|
|
||||||
(map! :map org-mode-map :leader "m c p" 'org-pomodoro)
|
|
||||||
|
|
||||||
(defvar cf/hide-scheduled-and-waiting-next-tasks t)
|
|
||||||
|
|
||||||
(defun cf/clock-in-to-next (kw)
|
|
||||||
(when (not (and (boundp 'org-capture-mode) org-capture-mode))
|
|
||||||
(cond
|
|
||||||
((and (member (org-get-todo-state) (list "WAITING"))
|
|
||||||
(cf/is-task-p))
|
|
||||||
"TODO"))))
|
|
||||||
|
|
||||||
(defun cf/find-project-task ()
|
|
||||||
(save-restriction
|
|
||||||
(widen)
|
|
||||||
(let ((parent-task (save-excursion (org-back-to-heading 'invisible-ok) (point))))
|
|
||||||
(while (org-up-heading-safe)
|
|
||||||
(when (member (nth 2 (org-heading-components)) org-todo-keywords-1)
|
|
||||||
(setq parent-task (point))))
|
|
||||||
(goto-char parent-task)
|
|
||||||
parent-task)))
|
|
||||||
|
|
||||||
(defun cf/is-project-p ()
|
|
||||||
(save-restriction
|
|
||||||
(widen)
|
|
||||||
(let ((has-subtask)
|
|
||||||
(subtree-end (save-excursion (org-end-of-subtree t)))
|
|
||||||
(is-a-task (member (nth 2 (org-heading-components)) org-todo-keywords-1)))
|
|
||||||
(save-excursion
|
|
||||||
(forward-line 1)
|
|
||||||
(while (and (not has-subtask)
|
|
||||||
(< (point) subtree-end)
|
|
||||||
(re-search-forward "^\*+ " subtree-end t))
|
|
||||||
(when (member (org-get-todo-state) org-todo-keywords-1)
|
|
||||||
(setq has-subtask t))))
|
|
||||||
(and is-a-task has-subtask))))
|
|
||||||
|
|
||||||
(defun cf/is-task-p ()
|
|
||||||
(save-restriction
|
|
||||||
(widen)
|
|
||||||
(let ((has-subtask)
|
|
||||||
(subtree-end (save-excursion (org-end-of-subtree t)))
|
|
||||||
(is-a-task (member (nth 2 (org-heading-components)) org-todo-keywords-1)))
|
|
||||||
(save-excursion
|
|
||||||
(forward-line 1)
|
|
||||||
(while (and (not has-subtask)
|
|
||||||
(< (point) subtree-end)
|
|
||||||
(re-search-forward "^\*+ " subtree-end t))
|
|
||||||
(when (member (org-get-todo-state) org-todo-keywords-1)
|
|
||||||
(setq has-subtask t))))
|
|
||||||
(and is-a-task (not has-subtask)))))
|
|
||||||
|
|
||||||
(defun cf/skip-non-tasks ()
|
|
||||||
(save-restriction
|
|
||||||
(widen)
|
|
||||||
(let ((next-headline (save-excursion (or (outline-next-heading) (point-max)))))
|
|
||||||
(cond
|
|
||||||
((cf/is-task-p)
|
|
||||||
nil)
|
|
||||||
(t
|
|
||||||
next-headline)))))
|
|
||||||
|
|
|
@ -4,8 +4,8 @@
|
||||||
;; in. Remember to run 'doom sync' after modifying it!
|
;; in. Remember to run 'doom sync' after modifying it!
|
||||||
|
|
||||||
;; NOTE Press 'SPC h d h' (or 'C-h d h' for non-vim users) to access Doom's
|
;; NOTE Press 'SPC h d h' (or 'C-h d h' for non-vim users) to access Doom's
|
||||||
;; documentation. There you'll find a "Module Index" link where you'll find
|
;; documentation. There you'll find a link to Doom's Module Index where all
|
||||||
;; a comprehensive list of Doom's modules and what flags they support.
|
;; of our modules are listed, including what flags they support.
|
||||||
|
|
||||||
;; NOTE Move your cursor over a module's name (or its flags) and press 'K' (or
|
;; NOTE Move your cursor over a module's name (or its flags) and press 'K' (or
|
||||||
;; 'C-c c k' for non-vim users) to view its documentation. This works on
|
;; 'C-c c k' for non-vim users) to view its documentation. This works on
|
||||||
|
@ -15,6 +15,7 @@
|
||||||
;; directory (for easy access to its source code).
|
;; directory (for easy access to its source code).
|
||||||
|
|
||||||
(doom! :input
|
(doom! :input
|
||||||
|
;;bidi ; (tfel ot) thgir etirw uoy gnipleh
|
||||||
;;chinese
|
;;chinese
|
||||||
;;japanese
|
;;japanese
|
||||||
;;layout ; auie,ctsrnm is the superior home row
|
;;layout ; auie,ctsrnm is the superior home row
|
||||||
|
@ -30,15 +31,15 @@
|
||||||
;;deft ; notational velocity for Emacs
|
;;deft ; notational velocity for Emacs
|
||||||
doom ; what makes DOOM look the way it does
|
doom ; what makes DOOM look the way it does
|
||||||
doom-dashboard ; a nifty splash screen for Emacs
|
doom-dashboard ; a nifty splash screen for Emacs
|
||||||
doom-quit ; DOOM quit-message prompts when you quit Emacs
|
;;doom-quit ; DOOM quit-message prompts when you quit Emacs
|
||||||
;;(emoji +unicode) ; 🙂
|
(emoji +unicode +github) ; 🙂
|
||||||
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 +light) ; snazzy, Atom-inspired modeline, plus API
|
(modeline +light) ; 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
|
||||||
|
@ -49,7 +50,7 @@
|
||||||
vi-tilde-fringe ; fringe tildes to mark beyond EOB
|
vi-tilde-fringe ; fringe tildes to mark beyond EOB
|
||||||
window-select ; visually switch windows
|
window-select ; visually switch windows
|
||||||
workspaces ; tab emulation, persistence & separate workspaces
|
workspaces ; tab emulation, persistence & separate workspaces
|
||||||
;;zen ; distraction-free coding or writing
|
zen ; distraction-free coding or writing
|
||||||
|
|
||||||
:editor
|
:editor
|
||||||
(evil +everywhere); come to the dark side, we have cookies
|
(evil +everywhere); come to the dark side, we have cookies
|
||||||
|
@ -61,12 +62,12 @@
|
||||||
;;multiple-cursors ; editing in many places at once
|
;;multiple-cursors ; editing in many places at once
|
||||||
;;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
|
||||||
(dired +icons) ; making dired pretty [functional]
|
(dired +ranger +icons) ; making dired pretty [functional]
|
||||||
electric ; smarter, keyword-based electric-indent
|
electric ; smarter, keyword-based electric-indent
|
||||||
;;ibuffer ; interactive buffer management
|
;;ibuffer ; interactive buffer management
|
||||||
undo ; persistent, smarter undo for your inevitable mistakes
|
undo ; persistent, smarter undo for your inevitable mistakes
|
||||||
|
@ -85,22 +86,23 @@
|
||||||
|
|
||||||
:tools
|
:tools
|
||||||
;;ansible
|
;;ansible
|
||||||
|
;;biblio ; Writes a PhD for you (citation needed)
|
||||||
;;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
|
;;gist ; interacting with github gists
|
||||||
lookup ; navigate your code and its documentation
|
lookup ; navigate your code and its documentation
|
||||||
(lsp +peek) ; M-x vscode
|
lsp ; M-x vscode
|
||||||
magit ; a git porcelain for Emacs
|
(magit +forge) ; 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
|
||||||
rgb ; creating color strings
|
rgb ; creating color strings
|
||||||
;;taskrunner ; taskrunner for all your projects
|
taskrunner ; taskrunner for all your projects
|
||||||
;;terraform ; infrastructure as code
|
;;terraform ; infrastructure as code
|
||||||
;;tmux ; an API for interacting with tmux
|
;;tmux ; an API for interacting with tmux
|
||||||
;;upload ; map local to remote projects via ssh/ftp
|
;;upload ; map local to remote projects via ssh/ftp
|
||||||
|
@ -112,43 +114,45 @@
|
||||||
:lang
|
:lang
|
||||||
;;agda ; types of types of types of types...
|
;;agda ; types of types of types of types...
|
||||||
;;beancount ; mind the GAAP
|
;;beancount ; mind the GAAP
|
||||||
;;cc ; C > C++ == 1
|
(cc +lsp) ; 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
|
;;common-lisp ; if you've seen one lisp, you've seen them all
|
||||||
;;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 +lsp) ; erlang done right
|
elixir ; erlang done right
|
||||||
;;elm ; care for a cup of TEA?
|
;;elm ; care for a cup of TEA?
|
||||||
emacs-lisp ; drown in parentheses
|
emacs-lisp ; drown in parentheses
|
||||||
erlang ; an elegant language for a more civilized age
|
erlang ; an elegant language for a more civilized age
|
||||||
;;ess ; emacs speaks statistics
|
;;ess ; emacs speaks statistics
|
||||||
;;factor
|
;;factor
|
||||||
;;faust ; dsp, but you get to keep your soul
|
;;faust ; dsp, but you get to keep your soul
|
||||||
|
;;fortran ; in FORTRAN, GOD is REAL (unless declared INTEGER)
|
||||||
;;fsharp ; ML stands for Microsoft's Language
|
;;fsharp ; ML stands for Microsoft's Language
|
||||||
;;fstar ; (dependent) types and (monadic) effects and Z3
|
;;fstar ; (dependent) types and (monadic) effects and Z3
|
||||||
;;gdscript ; the language you waited for
|
;;gdscript ; the language you waited for
|
||||||
;;(go +lsp) ; the hipster dialect
|
;;(go +lsp) ; the hipster dialect
|
||||||
|
;;(graphql +lsp) ; Give queries a REST
|
||||||
;;(haskell +lsp) ; a language that's lazier than I am
|
;;(haskell +lsp) ; 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 ; a language you can depend on
|
;;idris ; a language you can depend on
|
||||||
json ; At least it ain't XML
|
json ; At least it ain't XML
|
||||||
;;(java +meghanada) ; the poster child for carpal tunnel syndrome
|
;;(java +lsp) ; the poster child for carpal tunnel syndrome
|
||||||
javascript ; all(hope(abandon(ye(who(enter(here))))))
|
(javascript +lsp) ; 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)
|
||||||
;;latex ; writing papers in Emacs has never been so fun
|
;;latex ; writing papers in Emacs has never been so fun
|
||||||
;;lean ; for folks with too much to prove
|
;;lean ; for folks with too much to prove
|
||||||
;;ledger ; be audit you can be
|
;;ledger ; be audit you can be
|
||||||
;;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 +roam2) ; 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
|
||||||
|
@ -158,21 +162,21 @@
|
||||||
;;raku ; the artist formerly known as perl6
|
;;raku ; the artist formerly known as perl6
|
||||||
;;rest ; Emacs as a REST client
|
;;rest ; Emacs as a REST client
|
||||||
;;rst ; ReST in peace
|
;;rst ; ReST in peace
|
||||||
;;(ruby +rails) ; 1.step {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"}
|
(ruby +lsp +rbenv) ; 1.step {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"}
|
||||||
(rust +lsp) ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
|
(rust +lsp) ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
|
||||||
;;scala ; java, but good
|
;;scala ; java, but good
|
||||||
;;(scheme +guile) ; a fully conniving family of lisps
|
;;(scheme +guile) ; a fully conniving family of lisps
|
||||||
sh ; she sells {ba,z,fi}sh shells on the C xor
|
(sh +lsp +fish) ; she sells {ba,z,fi}sh shells on the C xor
|
||||||
;;sml
|
;;sml
|
||||||
;;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 +lsp) ; 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 +gmail)
|
;;(wanderlust +gmail)
|
||||||
|
|
||||||
|
@ -187,4 +191,3 @@
|
||||||
:config
|
:config
|
||||||
;;literate
|
;;literate
|
||||||
(default +bindings +smartparens))
|
(default +bindings +smartparens))
|
||||||
|
|
||||||
|
|
|
@ -1,14 +1,50 @@
|
||||||
;; -*- no-byte-compile: t; -*-
|
;; -*- no-byte-compile: t; -*-
|
||||||
;;; ~/.doom.d/packages.el
|
;;; $DOOMDIR/packages.el
|
||||||
|
|
||||||
;;; Examples:
|
;; To install a package with Doom you must declare them here and run 'doom sync'
|
||||||
;; (package! some-package)
|
;; on the command line, then restart Emacs for the changes to take effect -- or
|
||||||
;; (package! another-package :recipe (:fetcher github :repo "username/repo"))
|
;; use 'M-x doom/reload'.
|
||||||
;; (package! builtin-package :disable t)
|
|
||||||
(package! monky)
|
|
||||||
(package! exec-path-from-shell)
|
;; To install SOME-PACKAGE from MELPA, ELPA or emacsmirror:
|
||||||
(package! editorconfig)
|
;(package! some-package)
|
||||||
(package! gruvbox-theme)
|
|
||||||
(package! org-pomodoro)
|
;; To install a package directly from a remote git repo, you must specify a
|
||||||
(package! doom-themes)
|
;; `:recipe'. You'll find documentation on what `:recipe' accepts here:
|
||||||
(package! prettier-js)
|
;; https://github.com/raxod502/straight.el#the-recipe-format
|
||||||
|
;(package! another-package
|
||||||
|
; :recipe (:host github :repo "username/repo"))
|
||||||
|
|
||||||
|
;; If the package you are trying to install does not contain a PACKAGENAME.el
|
||||||
|
;; file, or is located in a subdirectory of the repo, you'll need to specify
|
||||||
|
;; `:files' in the `:recipe':
|
||||||
|
;(package! this-package
|
||||||
|
; :recipe (:host github :repo "username/repo"
|
||||||
|
; :files ("some-file.el" "src/lisp/*.el")))
|
||||||
|
|
||||||
|
;; If you'd like to disable a package included with Doom, you can do so here
|
||||||
|
;; with the `:disable' property:
|
||||||
|
;(package! builtin-package :disable t)
|
||||||
|
|
||||||
|
;; You can override the recipe of a built in package without having to specify
|
||||||
|
;; all the properties for `:recipe'. These will inherit the rest of its recipe
|
||||||
|
;; from Doom or MELPA/ELPA/Emacsmirror:
|
||||||
|
;(package! builtin-package :recipe (:nonrecursive t))
|
||||||
|
;(package! builtin-package-2 :recipe (:repo "myfork/package"))
|
||||||
|
|
||||||
|
;; Specify a `:branch' to install a package from a particular branch or tag.
|
||||||
|
;; This is required for some packages whose default branch isn't 'master' (which
|
||||||
|
;; our package manager can't deal with; see raxod502/straight.el#279)
|
||||||
|
;(package! builtin-package :recipe (:branch "develop"))
|
||||||
|
|
||||||
|
;; Use `:pin' to specify a particular commit to install.
|
||||||
|
;(package! builtin-package :pin "1a2b3c4d5e")
|
||||||
|
|
||||||
|
|
||||||
|
;; Doom's packages are pinned to a specific commit and updated from release to
|
||||||
|
;; release. The `unpin!' macro allows you to unpin single packages...
|
||||||
|
;(unpin! pinned-package)
|
||||||
|
;; ...or multiple packages
|
||||||
|
;(unpin! pinned-package another-pinned-package)
|
||||||
|
;; ...Or *all* packages (NOT RECOMMENDED; will likely break things)
|
||||||
|
;(unpin! t)
|
||||||
|
|
0
misc/emacs-disable-alchemist.patch
Normal file
0
misc/emacs-disable-alchemist.patch
Normal file
BIN
misc/emacs-splash.png
Normal file
BIN
misc/emacs-splash.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 312 KiB |
Loading…
Add table
Reference in a new issue