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/sh | |
#|-*- mode:lisp -*-|# | |
#| <Put a one-line description here> | |
exec ros -Q -- $0 "$@" | |
|# | |
(progn ;;init forms | |
(ros:ensure-asdf) | |
#+quicklisp (ql:quickload '(:lem-base :lem-lisp-syntax) :silent 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
#!/bin/sh | |
#|-*- mode:lisp -*-|# | |
#| <Put a one-line description here> | |
exec ros -Q -- $0 "$@" | |
|# | |
(progn ;;init forms | |
(ros:ensure-asdf) | |
#+quicklisp (ql:quickload '(:alexandria | |
:trivial-types | |
:cl-ppcre) |
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
(in-package :lem-user) | |
(define-command list-colors-display () () | |
(let* ((buffer (get-buffer-create "*colors*")) | |
(p (buffer-point buffer))) | |
(switch-to-buffer buffer) | |
(erase-buffer buffer) | |
(dolist (color (reverse lem.term::*colors*)) | |
(let ((attribute (make-attribute (lem.term::color-name color) nil))) | |
(with-point ((s p)) |
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
OPTIONS=align:lawful | |
OPTIONS=boulder:8 | |
OPTIONS=autopickup,pickup_types:$ | |
OPTIONS=race:human | |
OPTIONS=role:v | |
OPTIONS=autodig | |
OPTIONS=!cmdassist | |
OPTIONS=color | |
OPTIONS=hilite_pet | |
OPTIONS=msg_window:f |
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
xterm*termName: xterm-256color | |
xterm*saveLines: 10000 | |
xterm*metaSendsEscape: true | |
xterm*wideChars: true | |
xterm*forcePackedFont: false | |
xterm*ximFont: -misc-fixed-medium-r-normal--14-130-75-75-c-140-jisx0208.1983-0 | |
xterm*faceName: DejaVu Sans Mono | |
xterm*faceSize: 10.5 | |
xterm*faceNameDoublesize: Migu 1m |
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
keycode 102 = Control_L | |
keycode 100 = Control_L | |
clear Lock | |
add Control = Control_L |
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
;; -*- mode: lisp; package: stumpwm-user -*- | |
(in-package :stumpwm-user) | |
(ql:quickload :stumpwm-helper-battery) | |
(setq *input-window-gravity* :center) | |
(setq *message-window-gravity* :center) | |
(set-border-color "#777777") | |
(set-msg-border-width 7) |
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
(require :lem) | |
(push #'(lambda (x) | |
(if x | |
(lem:lem x) | |
(lem:lem)) | |
t) | |
sb-ext:*ed-functions*) | |
(rl:bind-keyseq "\\C-x\\C-y" |
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/sh | |
# The MIT License (MIT) | |
# | |
# Copyright (c) 2015 bpyamasinn. | |
# | |
# Permission is hereby granted, free of charge, to any person obtaining a copy | |
# of this software and associated documentation files (the "Software"), to deal | |
# in the Software without restriction, including without limitation the rights | |
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |