Skip to content

Instantly share code, notes, and snippets.

View Kyle-Verhoog's full-sized avatar
🦺

kyle Kyle-Verhoog

🦺
View GitHub Profile
" Vim color file
" Converted from Textmate theme Monokai using Coloration v0.3.2 (http://github.com/sickill/coloration)
set background=dark
highlight clear
if exists("syntax_on")
syntax reset
endif
colors lumberjack
syntax on
set tabstop=4
set shiftwidth=4
set expandtab
set smarttab
set guioptions-=m
set guioptions-=T
set guioptions-=r
set guioptions-=L
@Kyle-Verhoog
Kyle-Verhoog / sublime-normal-tab
Last active August 28, 2015 19:07
Sublime Normal Tab Behaviour
Add to Preferences->KeyBindings-User:
{ "keys": ["ctrl+tab"], "command": "next_view" },
{ "keys": ["ctrl+shift+tab"], "command": "prev_view" }
@Kyle-Verhoog
Kyle-Verhoog / ~.inputrc
Last active September 17, 2015 19:40
Bash vi bindings
set editing-mode vi
set keymap vi-command
set show-mode-in-prompt on
alias lock='gnome-screensaver-command -l'
alias vol='alsamixer'
export PS1="\u@[\w] > \[$(tput sgr0)\]"
alias :q="exit"
xmodmap ~/.swap
remove Lock = Caps_Lock
keysym Caps_Lock = Escape
add Lock = Caps_Lock
@Kyle-Verhoog
Kyle-Verhoog / firefoxfontfix
Created September 12, 2015 02:35
Fix Firefox font looking like complete crap
https://bbs.archlinux.org/viewtopic.php?id=173616
https://wiki.archlinux.org/index.php/Infinality
@Kyle-Verhoog
Kyle-Verhoog / ~.zshrc
Last active September 28, 2015 21:00
# Path to your oh-my-zsh installation.
export ZSH=/home/kverhoog/.oh-my-zsh
# Set name of the theme to load.
# Look in ~/.oh-my-zsh/themes/
# Optionally, if you set this to "random", it'll load a random theme each
# time that oh-my-zsh is loaded.
#ZSH_THEME="robbyrussell"
ZSH_THEME="agnoster"
# Uncomment the following line to use case-sensitive completion.
@Kyle-Verhoog
Kyle-Verhoog / ~.mozilla.userChrome.css
Created September 20, 2015 04:15
Get rid of annoyingly bright Firefox load screens
browser { background-color: #000 !important; }
;; -*- mode: emacs-lisp -*-
;; This file is loaded by Spacemacs at startup.
;; It must be stored in your home directory.
(defun dotspacemacs/layers ()
"Configuration Layers declaration."
(setq-default
;; List of additional paths where to look for configuration layers.
;; Paths must have a trailing slash (i.e. `~/.mycontribs/')
dotspacemacs-configuration-layer-path '()