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
Xft.dpi: 120 | |
Xft.antialias: true | |
Xft.hinting: true | |
Xft.rgba: rgb | |
Xft.hintstyle: hintslight | |
! hightlight - #268BD2 | |
! normal - #ffffff | |
rofi.color-enabled: true | |
rofi.color-window: #282a36, #282a36, #6272a4 |
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
# Enable VIM Mode | |
bindkey -v | |
# Remove Mode Change Delay | |
export KEYTIMEOUT=1 | |
# Add Some Emacs Keybindings | |
bindkey '^p' up-history | |
bindkey '^n' down-history | |
bindkey '^w' backward-kill-word |
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
package slack.rtm | |
import slack.api.BlockingSlackApiClient | |
import scala.concurrent.duration._ | |
import akka.actor.{ ActorSystem, Props } | |
import SlackRtmConnectionActor._ | |
object Main extends App { | |
val token = "<token>" |
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
;;; buffer-copy.el --- | |
;;; Code: | |
(require 'windmove) | |
;;;###autoload | |
(defun buf-copy-up () | |
"Copy the current buffer to the buffer above the split. |