Purge some emacs packages, add grammar
Change send-messages behaviour to 'sent'
This commit is contained in:
parent
f23fff8566
commit
0537485007
|
@ -37,6 +37,8 @@ in {
|
||||||
|
|
||||||
# Language-specific requirements
|
# Language-specific requirements
|
||||||
(aspellWithDicts (ds: with ds; [ en en-computers en-science ]))
|
(aspellWithDicts (ds: with ds; [ en en-computers en-science ]))
|
||||||
|
languagetool
|
||||||
|
wordnet
|
||||||
findutils
|
findutils
|
||||||
sqlite
|
sqlite
|
||||||
pandoc
|
pandoc
|
||||||
|
|
|
@ -43,7 +43,7 @@
|
||||||
(after! mu4e
|
(after! mu4e
|
||||||
(setq mu4e-get-mail-command "true"
|
(setq mu4e-get-mail-command "true"
|
||||||
mu4e-update-interval 300
|
mu4e-update-interval 300
|
||||||
mu4e-sent-messages-behavior 'delete
|
mu4e-sent-messages-behavior 'sent
|
||||||
mu4e-attachment-dir "~/Downloads"
|
mu4e-attachment-dir "~/Downloads"
|
||||||
mu4e-change-filenames-when-moving t
|
mu4e-change-filenames-when-moving t
|
||||||
mu4e-alert-modeline-formatter 'mu4e-alert-default-mode-line-formatter
|
mu4e-alert-modeline-formatter 'mu4e-alert-default-mode-line-formatter
|
||||||
|
|
|
@ -41,7 +41,7 @@
|
||||||
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
|
||||||
|
@ -59,7 +59,7 @@
|
||||||
(format +onsave) ; automated prettiness
|
(format +onsave) ; automated prettiness
|
||||||
;; god ; run Emacs commands without modifier keys
|
;; god ; run Emacs commands without modifier keys
|
||||||
;; lispy ; vim for lisp, for people who don't like vim
|
;; lispy ; vim for lisp, for people who don't like vim
|
||||||
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
|
||||||
|
@ -75,14 +75,14 @@
|
||||||
|
|
||||||
:term
|
:term
|
||||||
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
|
||||||
(spell +flyspell) ; tasing you for misspelling mispelling
|
(spell +flyspell) ; tasing you for misspelling mispelling
|
||||||
;; grammar ; tasing grammar mistake every you make
|
grammar ; tasing grammar mistake every you make
|
||||||
|
|
||||||
:tools
|
:tools
|
||||||
;; ansible
|
;; ansible
|
||||||
|
@ -94,7 +94,7 @@
|
||||||
;; 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 +dictionary +offline) ; navigate your code and its documentation
|
||||||
(lsp +eglot) ; M-x vscode
|
(lsp +eglot) ; 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
|
||||||
|
@ -110,7 +110,7 @@
|
||||||
|
|
||||||
:os
|
:os
|
||||||
(:if IS-MAC macos) ; improve compatibility with macOS
|
(:if IS-MAC macos) ; improve compatibility with macOS
|
||||||
tty ; improve the terminal Emacs experience
|
;; tty ; improve the terminal Emacs experience
|
||||||
|
|
||||||
:lang
|
:lang
|
||||||
;; agda ; types of types of types of types...
|
;; agda ; types of types of types of types...
|
||||||
|
@ -182,7 +182,7 @@
|
||||||
|
|
||||||
:app
|
:app
|
||||||
calendar
|
calendar
|
||||||
emms
|
;; emms
|
||||||
;; everywhere ; *leave* Emacs!? You must be joking
|
;; everywhere ; *leave* Emacs!? You must be joking
|
||||||
;; irc ; how neckbeards socialize
|
;; irc ; how neckbeards socialize
|
||||||
rss ; emacs as an RSS reader
|
rss ; emacs as an RSS reader
|
||||||
|
|
Loading…
Reference in a new issue