Skip to content

Instantly share code, notes, and snippets.

@buckie
buckie / Pact-tk.pact
Created August 10, 2019 16:10
Pact with Turkish in the code
;;
;; Example of Pact with Turkish in the Source
;;
(module ĞğŞşİı MODULE_ADMIN
(defcap MODULE_ADMIN () true)
(defun abŞ (num) (abs num))
@buckie
buckie / .vimrc
Last active August 29, 2015 14:04
dot files collection
set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
@buckie
buckie / .tmux_conf
Created July 22, 2014 01:49
dot files collection
# Rebind prefix to avoid conflicts
unbind C-b
set -g prefix C-a
bind C-a send-prefix
# I'm a Vim user, this makes navigation easier
setw -g mode-keys vi
unbind-key j
bind-key j select-pane -D
unbind-key k
@buckie
buckie / .git_config
Created July 22, 2014 01:48
dot files collection
[user]
name = buckie
email = ""
[alias]
fap = fetch --all --prune
csm = commit -sm
br = branch
st = status
rbm = rebase master
lg1 = log --oneline --decorate
@buckie
buckie / .bashrc
Created July 22, 2014 01:47
dot files collection
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
[ -z "$PS1" ] && return
# don't put duplicate lines or lines starting with space in the history.
# See bash(1) for more options
HISTCONTROL=ignoreboth
@buckie
buckie / .bash_profile
Created July 22, 2014 01:46
dot files collection
#!/bin/bash
# Useful Aliases
alias pbcopy="xclip -selection clipboard"
alias pbpaste="xclip -selection clipboard -o"
alias rebash=". ~/.bashrc"
alias histgrep="history | grep"