Skip to content

Instantly share code, notes, and snippets.

View thefrench77's full-sized avatar

French 77 thefrench77

  • Texas
View GitHub Profile
@thefrench77
thefrench77 / .dir_colors
Created February 16, 2016 23:33
Dark dircolors
NORMAL 00;38;5;244 # no color code at all
#FILE 00 # regular file: use no color at all
RESET 0 # reset to "normal" color
DIR 00;38;5;33 # directory 00;34
LINK 00;38;5;37 # symbolic link. (If you set this to 'target' instead of a
# numerical value, the color is as for the file pointed to.)
MULTIHARDLINK 00 # regular file with more than one link
FIFO 48;5;230;38;5;136;00 # pipe
SOCK 48;5;230;38;5;136;00 # socket
DOOR 48;5;230;38;5;136;00 # door
@thefrench77
thefrench77 / .zstyle
Created February 16, 2016 23:32
Zsh Highlight Styles
ZSH_HIGHLIGHT_STYLES[double-quoted-argument]=fg=yellow
ZSH_HIGHLIGHT_STYLES[bracket-error]=fg=red
ZSH_HIGHLIGHT_STYLES[dollar-double-quoted-argument]=fg=cyan
ZSH_HIGHLIGHT_STYLES[double-hyphen-option]=none
ZSH_HIGHLIGHT_STYLES[globbing]=fg=blue
ZSH_HIGHLIGHT_STYLES[history-expansion]=fg=blue
ZSH_HIGHLIGHT_STYLES[single-hyphen-option]=none
ZSH_HIGHLIGHT_STYLES[dollar-quoted-argument]=fg=yellow
ZSH_HIGHLIGHT_STYLES[alias]=fg=green
ZSH_HIGHLIGHT_STYLES[path_prefix]=none
@thefrench77
thefrench77 / .zkey
Created February 16, 2016 23:31
[MSYS2] Zsh Key Binding for MinTTY
bindkey '^[[2~' overwrite-mode
bindkey '\e[H' beginning-of-line
bindkey '^[[5~' up-line-or-history
bindkey '^[[3~' delete-char
bindkey '\e[F' end-of-line
bindkey '^[[6~' down-line-or-history
bindkey '^[[A' up-line-or-search
bindkey '^[[D' backward-char
bindkey '^[[B' down-line-or-search
bindkey '^[[C' forward-char
@thefrench77
thefrench77 / .gitconfig
Last active December 28, 2020 08:45
Git config [MSYS2]
[core]
editor = subl -n -w
# editor = atom --wait
excludesfile = C:\\Users\brice\\.config\\git\\ignore
[push]
default = simple
[color]
ui = auto
[color "branch"]
current = yellow
@thefrench77
thefrench77 / makefile
Last active February 16, 2016 15:35
GNU Makefile template [MSYS2]
PATHPRJ := $(CURDIR)
NAMEPRJ ?= $(notdir $(PATHPRJ))
PATHSRC ?= ./src
PATHINC ?= ./inc $(PATHSRC)
PATHBIN ?= ./bin
PATHDEP ?= $(PATHBIN)
PATHOBJ ?= $(PATHBIN)
LISTSRC := $(wildcard $(PATHSRC:%=%/*.s))
@thefrench77
thefrench77 / mintty-one-dark
Created February 10, 2016 04:06
MinTTY color scheme based on Atom One Dark
ForegroundColour=171,178,191
BackgroundColour=30,33,39
CursorColour=97,175,239
BoldBlack=92,99,112
Black=92,99,112
BoldRed=224,108,117
Red=224,108,117
BoldGreen=152,195,121
Green=152,195,121
BoldYellow=209,154,102
@thefrench77
thefrench77 / msys2.reg
Last active February 10, 2016 04:05 — forked from magthe/msys2.reg
MSYS2 "Shell Here" registry settings
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\msys2_zsh]
@="MSYS2 Shell here"
[HKEY_CLASSES_ROOT\Directory\Background\shell\msys2_zsh\command]
@="c:\\msys64\\usr\\bin\\mintty.exe /bin/sh -lc 'cd \"$(cygpath \"%V\")\"; exec zsh'"
[HKEY_CLASSES_ROOT\Folder\shell\msys2_zsh]
@="MSYS2 Shell here"