You should embed content of this file to your ~/.pentadactylrc
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
" turn syntax on when possible | |
if has("syntax") | |
syntax on | |
endif | |
" disable use of mouse, this prevent swtiching to visual mode on mouse selection | |
set mouse= | |
" do not show line numbers | |
set nonumber |
We can make this file beautiful and searchable if this error is corrected: No commas found in this CSV file in line 0.
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
year|album|artist | |
1955|In The Wee Small Hours|Frank Sinatra | |
1956|Ellington at Newport _56|Duke Ellington | |
1956|Elvis Presley|Elvis Presley | |
1956|Songs For Swingin' Lovers|Frank Sinatra | |
1956|Birth of the Cool|Miles Davis | |
1956|Tragic Songs Of Life|The Louvin Brothers | |
1957|The Atomic Mr Basie|Count Basie | |
1957|This is Fats Domino|Fats Domino | |
1957|Here_s Little Richard|Little Richard |
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
#!/bin/bash | |
CLASS=`cat $1 | grep -P '(OTA.[^.]*) = function' | cut -f1 -d'=' | sed 's/^ *//;s/ *$//'` | |
git grep "OTA\.extend(OTA\..*, $CLASS)" | grep -oP '\(\KOTA\.([^,]*)' |
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
# i3 config file (v4) | |
# | |
# Please see http://i3wm.org/docs/userguide.html for a complete reference! | |
# | |
# This config file uses keycodes (bindsym) and was written for the QWERTY | |
# layout. | |
# | |
# To get a config file with the same key positions, but for your current | |
# layout, use the i3-config-wizard | |
# |
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
position | |
top | |
right | |
bottom | |
left | |
z-index | |
display | |
visibility | |
-webkit-flex-direction | |
-moz-flex-direction |
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
#!/bin/bash | |
# link rc files | |
configs=(\ | |
".bashrc"\ | |
".beetsconfig"\ | |
".conkyrc"\ | |
".gtkrc-2.0"\ | |
".gvimrc"\ | |
".hgrc"\ |