Compare commits

..

No commits in common. "3f5a9a6cf9bff0f900f97bcca66b6009acb02904" and "93fb8227d5d905f799c9e56e28dfcace04bc6145" have entirely different histories.

4 changed files with 4 additions and 14 deletions

View file

@ -13,7 +13,6 @@
fd fd
pandoc # For org-pandoc pandoc # For org-pandoc
texliveFull # for latex conversions
(aspellWithDicts ( (aspellWithDicts (
dicts: with dicts; [ dicts: with dicts; [
en en
@ -21,6 +20,7 @@
] ]
)) # 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
]; ];

View file

@ -101,11 +101,3 @@
;; 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))))

View file

@ -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 ; a project drawer, like neotree but cooler (treemacs +lsp) ; 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

View file

@ -9,9 +9,7 @@ return {
---@param opts AstroLSPOpts ---@param opts AstroLSPOpts
---@return AstroLSPOpts ---@return AstroLSPOpts
opts = function(_, opts) opts = function(_, opts)
local system_flake_path = os.getenv "FLAKE" local system_flake_path = os.getenv "FLAKE" or os.getenv "NH_FLAKE" or error "FLAKE environment variable must be set."
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