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 mouse= | |
set nomodeline | |
set tabstop=2 shiftwidth=2 expandtab | |
" Show tabs. | |
set list listchars=tab:>\ | |
set linebreak | |
set ignorecase wildignorecase | |
set undofile | |
set splitright |
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
# | |
# ~/.bashrc | |
# | |
# If not running interactively, don't do anything. | |
[[ $- != *i* ]] && return | |
shopt -s histappend | |
HISTSIZE='' | |
HISTFILESIZE='' |
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
global _start | |
SECTION .data | |
fizz db 'fizz', 0 | |
buzz db 'buzz', 0 | |
newline db 10, 0 | |
SECTION .bss | |
buffer resb 256 |
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
# teminal 256 colors | |
e scr.color=2 | |
e scr.utf8=true | |
e scr.utf8.curvy=true | |
# allow placing breakpoints outside mapped memory | |
#e dbg.bpinmaps=false | |
# color scheme | |
eco twilight |
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
/* See LICENSE file for copyright and license details. */ | |
/* appearance */ | |
static const unsigned int borderpx = 2; /* border pixel of windows */ | |
static const unsigned int snap = 16; /* snap pixel */ | |
static const int showbar = 1; /* 0 means no bar */ | |
static const int topbar = 1; /* 0 means bottom bar */ | |
static const float floatingopacity = 0.2; | |
static const char *fonts[] = { "Source Code Pro:style=Bold:pixelsize=16:antialias=true:autohint=true" }; | |
static const char dmenufont[] = "Source Code Pro:style=Bold:pixelsize=16:antialias=true:autohint=true"; |
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
/* See LICENSE file for copyright and license details. */ | |
/* | |
* appearance | |
* | |
* font: see http://freedesktop.org/software/fontconfig/fontconfig-user.html | |
*/ | |
static char *font = "Source Code Pro:style=Regular:pixelsize=16:antialias=true:autohint=true"; | |
static char *font2[] = { | |
"DejaVu Sans Mono:style=Regular:pixelsize=16:antialias=true:autohint=true" |
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
# xdg default directories | |
XDG_DESKTOP_DIR="$HOME/tmp" | |
XDG_DOCUMENTS_DIR="$HOME/tmp" | |
XDG_DOWNLOAD_DIR="$HOME/tmp" | |
XDG_MUSIC_DIR="$HOME/tmp" | |
XDG_PICTURES_DIR="$HOME/tmp" | |
XDG_PUBLICSHARE_DIR="$HOME/tmp" | |
XDG_TEMPLATES_DIR="$HOME/tmp" | |
XDG_VIDEOS_DIR="$HOME/tmp" |
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 | |
# Source global X session scripts. | |
if [ -d /etc/X11/xinit/xinitrc.d ]; then | |
for f in /etc/X11/xinit/xinitrc.d/*; do | |
[ -x "$f" ] && . "$f" | |
done | |
unset f | |
fi |
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 | |
# https://github.com/cfenollosa/os-tutorial/tree/master/11-kernel-crosscompiler | |
# http://geekos.sourceforge.net/docs/crossgcc.html | |
# https://github.com/nativeos/pkgbuild-i386-elf-toolchain/blob/master/i386-elf-gcc/PKGBUILD | |
# http://www.linuxfromscratch.org/lfs/view/development/chapter06/gcc.html | |
# https://gcc.gnu.org/install/configure.html | |
TARGET=i386-elf | |
# Add `$PREFIX/bin` to your `$PATH`. | |
PREFIX=/opt/i386-elf |
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
highlight clear | |
let colors_name="focus" | |
highlight Normal ctermfg=none ctermbg=none | |
set background=dark | |
hi! link Cursor Normal | |
"hi! link Comment Normal |
OlderNewer