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
version = '0' | |
apply plugin: 'java' | |
buildscript { | |
repositories { | |
mavenCentral() | |
} | |
dependencies { |
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
#export TERM=xterm-256color | |
startup_message off | |
hardstatus alwayslastline | |
hardstatus string '%{= kG} %{W} %S %u %t' |
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
auto lo | |
iface lo inet loopback | |
auto eth0 | |
iface eth0 inet manual | |
auto br0 | |
iface br0 inet dhcp | |
bridge_ports eth0 | |
bridge_stp off |
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
DEFAULT ramdisk | |
LABEL ramdisk | |
kernel /casper/vmlinuz | |
append boot=casper initrd=/casper/initrd.img | |
LABEL isotest | |
kernel /casper/vmlinuz | |
append boot=casper integrity-check initrd=/casper/initrd.img | |
LABEL memtest | |
kernel /install/memtest | |
append - |
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
:set -isrc -itest -Wall -optP-include -optPdist/build/autogen/cabal_macros.h |
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
gtk-icon-theme-name = "" | |
gtk-theme-name = "" | |
gtk-font-name = "DejaVu Sans Book 13" |
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
(setq haskell-doc-show-global-types t) | |
(add-to-list 'default-frame-alist '(font . "DejaVu Sans-13:style=Book")) | |
(load "~/.emacs.d/haskell-site-file") | |
(add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode) | |
(add-hook 'haskell-mode-hook 'turn-on-haskell-indentation) | |
(add-hook 'haskell-mode-hook 'flymake-mode) | |
(autoload 'ghc-init "ghc" nil t) |
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
# Use 'blkid -o value -s UUID' to print the universally unique identifier | |
# <file system> <mount point> <type> <options> <dump> <pass> | |
UUID="" / ext4 errors=remount-ro,noatime 0 1 |
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
#loadkeys mykeymap | |
keycode 1 = Caps_Lock | |
keycode 58 = Escape |
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
#!/bin/sh -e | |
INITTY=/dev/tty[1-8] | |
for tty in $INITTY; do | |
setleds -D +num < $tty | |
done | |
#loadkeys /usr/share/keymaps/i386/azerty/fr-latin1.map.gz | |
loadkeys /usr/share/keymaps/tty-gert | |
X & | |
exit 0 |