Kaynağa Gözat

Tiny changes

Simon Watson 3 yıl önce
ebeveyn
işleme
17b8aca272
2 değiştirilmiş dosya ile 10 ekleme ve 1 silme
  1. 1 0
      bashrc/bashrc-all
  2. 9 1
      emacs/.emacs-all

+ 1 - 0
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() {

+ 9 - 1
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")))