- Install zsh
- Install Pacakge Manager version to install package manager
- Get slime working
- change prefix key to C-’
- install sbcl
- install quicklisp packages
- compile stumpwm
- create .xinitrc to point to new install
- reboot
- profit
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (keyboard-translate ?\C-t ?\C-x) | |
| (global-set-key (kbd "C-x x") 'execute-extended-command) | |
| (global-set-key (kbd "C-x C-x") 'execute-extended-command) | |
| (global-set-key (kbd "C-x RET") 'list-buffers) | |
| (global-set-key (kbd "C-x 7") 'winner-undo) | |
| (fset 'yes-or-no-p 'y-or-n-p) | |
| (setq winner-mode t) | |
| (org-babel-do-load-languages 'org-babel-load-languages | |
| '((sh . t))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/guile \ | |
| -e main -s | |
| !# | |
| (define (main args) | |
| (map (lambda (arg) (display arg) (display " ")) | |
| (cdr args)) | |
| (newline)) | |
| (define (caddddr list) | |
| (car (cdr (cdr (cdr (cdr list)))))) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/local/bin/guile \ | |
| -e main -s | |
| !# | |
| (define (main args) | |
| (map (lambda (arg) (display arg) (display " ")) | |
| (cdr args)) | |
| (newline)) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ansible-galaxy install -p ./roles -r roles.yml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # get dependencies | |
| sudo apt-get build-dep vim | |
| sudo apt-get build-dep perl | |
| sudo apt-get build-dep python2.7 | |
| sudo apt-get build-dep ruby1.9.1 | |
| sudo apt-get build-dep racket | |
| sudo apt-get build-dep lua | |
| sudo apt-get install mercurial |
NewerOlder