Guest User

Untitled

a guest
Nov 21st, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1.  
  2. ;; FILE: ~/.stumpwmrc
  3. ;; AUTHOR: syrinx copyleft 2012
  4.  
  5.  
  6. ;; COMMENT: package scope
  7. (in-package :stumpwm)
  8.  
  9. ;; COMMENT: defaults
  10. (setf *default-package* :stumpwm
  11. *mouse-focus-policy* :click)
  12.  
  13. ;; COMMENT: keybindings
  14. (set-prefix-key (kbd "C-w"))
  15. (define-key *root-map* (kbd "C-c") "exec urxvt")
  16. (define-key *root-map* (kbd "C-b") "exec chromium")
  17. (define-key *root-map* (kbd "L") "exec slimlock")
  18. (define-key *root-map* (kbd "E") "exec ekiga")
  19. (define-key *root-map* (kbd "M-w") "exec conkeror")
  20. ;; COMMENT: appearance
  21. (setf *window-border-style* :thin)
  22. (set-font "-*-dejavu sans mono-normal-normal-normal-*-9-*-*-*-*-*-")
  23.  
  24. ;; (load "/usr/share/emacs/site-lisp/slime/swank-loader.lisp")
  25. ;; ;;(load "/home/syrinx_/quicklisp/dists/quicklisp/software/slime-20120208-cvs/swank-loader.lisp")
  26.  
  27. ;; (require 'swank)
  28. ;; (swank:create-server)
  29.  
  30. ;; (swank-loader:init)
  31. ;; (defvar *swank-p* nil)
  32.  
  33. ;; (defcommand swank () ()
  34. ;; "Starts a swank server on port 4005 and notifies the user."
  35. ;; (setf *top-level-error-action* :break)
  36. ;; (if *swank-p*
  37. ;; (message "Swank server already running.")
  38. ;; (progn
  39. ;; (swank:create-server :port 4005
  40. ;; :style swank:*communication-style*
  41. ;; :dont-close t)
  42. ;; (setf *swank-p* t)
  43. ;; (message "Starting swank (port 4005)."))))
Add Comment
Please, Sign In to add comment