(require 'package)
(setq package-enable-at-startup nil)
(setq package-archives '(("ELPA" . "http://tromey.com/elpa/")
This file contains 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
(use-package geiser-guile | |
:ensure t | |
:config | |
(setq answer/geiser-display-posframe--last-position nil) | |
(defun answer/geiser-display-posframe--get-last-position () | |
(list (current-buffer) (buffer-modified-tick) (point))) | |
(defun answer/geiser-display-posframe--hide-handler (_info) | |
(not (equal (answer/geiser-display-posframe--get-last-position) | |
answer/geiser-display-posframe--last-position))) | |
(defun answer/geiser-display-posframe (what ret &optional res _auto-p) |
This file contains 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
;; basically just screams at you when you dont alternate lol im too lazy | |
;; to locate the window | |
side := "Right" | |
~$k::GoSub CheckRight | |
~$l::GoSub CheckRight | |
~$d::GoSub CheckLeft | |
~$s::GoSub CheckLeft | |
CheckRight: |
This file contains 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
nav, footer { | |
background-color: #294969; | |
} | |
footer { | |
overflow: hidden; | |
} | |
textarea,select { | |
background-color: white; |