17b8aca272c0792b5d9d2020f56326e354d4303b
commit 17b8aca272c0792b5d9d2020f56326e354d4303b
Author: Simon Watson <spw01@protonmail.com>
Date: Thu Sep 23 09:12:47 2021 -0400

Tiny changes

diff --git a/bashrc/bashrc-all b/bashrc/bashrc-all
index 61fc388..b491f6b 100644
--- a/bashrc/bashrc-all
+++ b/bashrc/bashrc-all
@@ -60,6 +60,7 @@ case $(hostname) in
export PS1="[\[\033[36m\]\u\[\033[m\]@\[\033[32m\]\h:\[\033[33;1m\]\w\[\033[m\]]\$ "
alias start_od="rclone --vfs-cache-mode writes mount ipconedrive: /home/watonsi/OneDrive/"
alias tmuxn="systemd-run --scope --user tmux new -s $1"
+ alias scrot="maim"

# function to set terminal title
function set-title() {
diff --git a/emacs/.emacs-all b/emacs/.emacs-all
index f8d429c..bc35c21 100644
--- a/emacs/.emacs-all
+++ b/emacs/.emacs-all
@@ -244,6 +244,10 @@
(if (eq system-type 'gnu/linux)
(if (display-graphic-p)
(progn
+
+ (load (expand-file-name "~/quicklisp/slime-helper.el"))
+ (setq inferior-lisp-program "/usr/local/bin/sbcl")
+
(setq yas-snippet-dirs
'("~/Repos/dotfiles/emacs/yasnippets/"))
(yas-global-mode 1)
@@ -265,4 +269,8 @@

;; Load for Term
(unless (display-graphic-p)
- (xterm-mouse-mode t))
+ (progn
+ (load "~/Repos/dotfiles/emacs/linux-load/customs.el")
+ (xterm-mouse-mode t)
+ (load (expand-file-name "~/quicklisp/slime-helper.el"))
+ (setq inferior-lisp-program "/usr/local/bin/sbcl")))