Link to Apple Shortcut with inline perl:
https://www.icloud.com/shortcuts/dac14b78e3a047f4901ea426371578e0
Link to Apple Shortcut with inline perl:
https://www.icloud.com/shortcuts/dac14b78e3a047f4901ea426371578e0
PdfLatex is a tool that converts Latex sources into PDF. This is specifically very important for researchers, as they use it to publish their findings. It could be installed very easily using Linux terminal, though this seems an annoying task on Windows. Installation commands are given below.
sudo apt-get install texlive-latex-base
| Head: master Adds notes on modus-themes | |
| Merge: origin/master Adds alerts and sauron | |
| Push: gh/master Updated readme and init.el | |
| Untracked files (16) | |
| .agignore | |
| .org-id-locations | |
| base-emacs-config.org | |
| base-emacs-config.org.org | |
| baseline-config.org |
| ; http://emacs.stackexchange.com/questions/1051/copy-region-from-emacs-without-newlines | |
| (defun my-copy-simple (&optional beg end) | |
| "Save the current region (or line) to the `kill-ring' after stripping extra whitespace and new lines" | |
| (interactive | |
| (if (region-active-p) | |
| (list (region-beginning) (region-end)) | |
| (list (line-beginning-position) (line-end-position)))) | |
| (let ((my-text (buffer-substring-no-properties beg end))) | |
| (with-temp-buffer | |
| (insert my-text) |
There appear to be no packages for iosevka for debian. The prescribed method is to add the fonts to the fonts folder. The github issues point towards a PPA which can be added. However, this did not work for me, and I had to resort to manual means.
Downloading the specified font version from github into a temp folder
cd ~/temp
wget "https://github.com/be5invis/Iosevka/releases/download/v2.2.1/01-iosevka-2.2.1.zip"(nougat-hydra hydra-straight (:color green)
("Straight" (("p" (call-interactively 'straight-pull-package) "Pull one")
("P" (straight-pull-all) "Pull ALL")
("f" (call-interactively 'straight-fetch-package) "Fetch one")
("F" (straight-fetch-all) "Fetch ALL")
("w" (call-interactively 'straight-visit-package-website) "visit package Website")
("g" (call-interactively 'straight-get-recipe) "Get recipe")
)))| --- | |
| packages.el | 66 ++++++++++++++++++++++++++++++++------------------- | |
| scimax-org.el | 54 +++++++++++++++++++++++++++-------------- | |
| 2 files changed, 77 insertions(+), 43 deletions(-) | |
| diff --git a/packages.el b/packages.el | |
| index 6843d1f..3a97f2f 100644 | |
| --- a/packages.el | |
| +++ b/packages.el | |
| @@ -14,23 +14,23 @@ |
Installing emacs 26.3 from source on Ubuntu v18.04
These appear to be the minimum number of libraries which need to be installed to get Emacs running:
sudo apt-get install libgtk-3-dev \
libxpm-dev \
gnutls-dev \
libncurses5-dev \
libx11-dev \