Compare commits
4 commits
93fb8227d5
...
3f5a9a6cf9
Author | SHA1 | Date | |
---|---|---|---|
3f5a9a6cf9 | |||
b971a7b58e | |||
836e0a5f8b | |||
20efd55361 |
4 changed files with 14 additions and 4 deletions
|
@ -13,6 +13,7 @@
|
||||||
fd
|
fd
|
||||||
|
|
||||||
pandoc # For org-pandoc
|
pandoc # For org-pandoc
|
||||||
|
texliveFull # for latex conversions
|
||||||
(aspellWithDicts (
|
(aspellWithDicts (
|
||||||
dicts: with dicts; [
|
dicts: with dicts; [
|
||||||
en
|
en
|
||||||
|
@ -20,7 +21,6 @@
|
||||||
]
|
]
|
||||||
)) # for flyspell
|
)) # for flyspell
|
||||||
gnuplot_qt # for plotting graphs
|
gnuplot_qt # for plotting graphs
|
||||||
languagetool # for grammar
|
|
||||||
ledger # for accounting and org-ledger
|
ledger # for accounting and org-ledger
|
||||||
gzip # Otherwise random errors occur from the onChange script
|
gzip # Otherwise random errors occur from the onChange script
|
||||||
];
|
];
|
||||||
|
|
|
@ -101,3 +101,11 @@
|
||||||
|
|
||||||
;; Configure elfeed-org
|
;; Configure elfeed-org
|
||||||
(setq rmh-elfeed-org-files '("/home/wizardlink/Documents/notes/elfeed.org"))
|
(setq rmh-elfeed-org-files '("/home/wizardlink/Documents/notes/elfeed.org"))
|
||||||
|
|
||||||
|
;; Set CLI options for ox-pandoc when generating PDFs from LaTeX,
|
||||||
|
;; ensuring that `latexmk` is used so we have proper citations.
|
||||||
|
(use-package ox-pandoc
|
||||||
|
:init
|
||||||
|
(setq org-pandoc-options-for-latex-pdf '((pdf-engine . "latexmk")
|
||||||
|
(pdf-engine-opt . "-bibtex")
|
||||||
|
(biblatex . t))))
|
||||||
|
|
|
@ -45,7 +45,7 @@
|
||||||
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 +lsp) ; 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
|
||||||
vi-tilde-fringe ; fringe tildes to mark beyond EOB
|
vi-tilde-fringe ; fringe tildes to mark beyond EOB
|
||||||
|
@ -85,7 +85,7 @@
|
||||||
(spell ; tasing you for misspelling mispelling
|
(spell ; tasing you for misspelling mispelling
|
||||||
+aspell
|
+aspell
|
||||||
+flyspell)
|
+flyspell)
|
||||||
grammar ; tasing grammar mistake every you make
|
;;grammar ; tasing grammar mistake every you make
|
||||||
|
|
||||||
:tools
|
:tools
|
||||||
;;ansible
|
;;ansible
|
||||||
|
|
|
@ -9,7 +9,9 @@ return {
|
||||||
---@param opts AstroLSPOpts
|
---@param opts AstroLSPOpts
|
||||||
---@return AstroLSPOpts
|
---@return AstroLSPOpts
|
||||||
opts = function(_, opts)
|
opts = function(_, opts)
|
||||||
local system_flake_path = os.getenv "FLAKE" or os.getenv "NH_FLAKE" or error "FLAKE environment variable must be set."
|
local system_flake_path = os.getenv "FLAKE"
|
||||||
|
or os.getenv "NH_FLAKE"
|
||||||
|
or error "FLAKE environment variable must be set."
|
||||||
local hostname = vim.fn.hostname()
|
local hostname = vim.fn.hostname()
|
||||||
|
|
||||||
---@type AstroLSPOpts
|
---@type AstroLSPOpts
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue