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
{ | |
"header": { | |
"Name": "WhiteFox", | |
"Layout": "AriaBlank", | |
"Base": "AllBlank", | |
"Version": "0.2", | |
"Author": "HaaTa (Jacob Alexander) 2015", | |
"KLL": "0.3c", | |
"Date": "2016-05-30", | |
"Generator": "KIICONF 0.2" |
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
# Install tmux on Centos release 6.5 | |
# install deps | |
yum install gcc kernel-devel make ncurses-devel | |
# DOWNLOAD SOURCES FOR LIBEVENT AND MAKE AND INSTALL | |
curl -OL https://github.com/libevent/libevent/releases/download/release-2.0.22-stable/libevent-2.0.22-stable.tar.gz | |
tar -xf libevent-2.0.22-stable.tar.gz | |
cd libevent-2.0.22-stable | |
./configure --prefix=/usr/local |
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
[emacs] | |
name=Emacs 24.2 repo | |
baseurl=http://pj.freefaculty.org/EL/6/x86_64/ | |
failovermethod=priority | |
enabled=1 | |
gpgcheck=1 | |
gpgkey=http://pj.freefaculty.org/EL/PaulJohnson-BinaryPackageSigningKey |
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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>Ansi 0 Color</key> | |
<dict> | |
<key>Blue Component</key> | |
<real>0.0</real> | |
<key>Green Component</key> | |
<real>0.0</real> |
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
Used this | |
# Adding a repository as a subtree to your current repository | |
$ git subtree add --prefix=path/in/curr/repo \ | |
git://github.com/yourname/your-repo.git master | |
git log has entry and histories (i.e all commits) of both repositories | |
commit d0b0cdeeb29d4512c7426e8f1680505aa3f3c03c |
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
! | |
! Swap Caps_Lock and Control_L | |
! | |
remove Lock = Caps_Lock | |
remove Control = Control_L | |
keysym Control_L = Caps_Lock |
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
;;; File: emacs-format-file | |
;; http://www.cslab.pepperdine.edu/warford/BatchIndentationEmacs.html | |
;; to be run as -- | |
;; emacs -batch *.[ch] -l ~/src/scripts/emacs-format-file -f emacs-format-function | |
(defun emacs-format-function () | |
"Format the whole buffer." | |
(if (< 1 (count-windows)) | |
(delete-other-windows (selected-window))) | |
(catch 'tag |
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
;;; tomorrow-night-theme.el --- custom theme for faces | |
;;; Commentary: | |
;; | |
;;; Tomorrow Night Theme | |
;; | |
;; Originally by Chris Kempson https://github.com/ChrisKempson/Tomorrow-Theme | |
;; Ported to GNU Emacs by Chris Charles | |
;; Ported to GNU Emacs 24's built-in theme system by Jim Myhrberg (@jimeh) | |
;; Lots of modifications by Chinmay Kamat (@cdkamat) |