aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.bashrc2
-rw-r--r--.emacs.d/abbrevs.el1
-rw-r--r--.emacs.d/init.org4
3 files changed, 6 insertions, 1 deletions
diff --git a/.bashrc b/.bashrc
index abdc66a..4883248 100644
--- a/.bashrc
+++ b/.bashrc
@@ -146,3 +146,5 @@ alias ssh="gpg-connect-agent updatestartuptty /bye >/dev/null; ssh"
# Handy alias for the ip command
alias ip="ip --color"
alias ipb="ip --color --brief"
+
+export PATH="$HOME/.yarn/bin:$HOME/.config/yarn/global/node_modules/.bin:$PATH"
diff --git a/.emacs.d/abbrevs.el b/.emacs.d/abbrevs.el
index 4d5502d..c886207 100644
--- a/.emacs.d/abbrevs.el
+++ b/.emacs.d/abbrevs.el
@@ -3,4 +3,5 @@
("afaict" "as far as I can tell" nil 0)
("btw" "by the way" nil 0)
("diba" "Diputació de Barcelona" nil 0)
+ ("FiG", "Ferrer i Guàrdia" nil 0)
))
diff --git a/.emacs.d/init.org b/.emacs.d/init.org
index 8ee387f..af1b905 100644
--- a/.emacs.d/init.org
+++ b/.emacs.d/init.org
@@ -2483,10 +2483,12 @@ And last but not least, I use a wrapper to start a screencast:
(defun mssola-screencast ()
"Start keycast-mode and then start a gif screencast."
+ (interactive)
+
(if (version< emacs-version "25.3")
(message "Requires 25.3 or later.")
(progn
- (keycast)
+ (keycast-mode)
(gif-screencast))))
#+END_SRC