Skip to content

Commit

Permalink
local lynx config
Browse files Browse the repository at this point in the history
added xterm configuration and w3m

sdf alias

ignore history file

aliasing fonts
  • Loading branch information
jamestomasino committed Aug 15, 2017
1 parent b42aadf commit 057e3d8
Show file tree
Hide file tree
Showing 6 changed files with 4,001 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -0,0 +1 @@
utils/.w3m/history
3 changes: 3 additions & 0 deletions bash/.alias
Expand Up @@ -85,3 +85,6 @@ alias tron='ssh sshtron.zachlatta.com'

# rickroll
alias roll='curl -s -L http://bit.ly/10hA8iC | bash'

# sdf
alias sdf='mosh sdf'
1 change: 1 addition & 0 deletions bash/.environment
Expand Up @@ -12,6 +12,7 @@ export LSCOLORS=gxfxcxdxbxggedabagacad
export CLICOLOR=1
export R_LIBS="$HOME/.rlib"
export FZF_DEFAULT_COMMAND='ag --hidden --ignore .git --ignore .sass-cache -g ""'
export LYNX_CFG="$HOME/.lynxrc"

# path vars
export DROPBOX_PATH="$HOME/.dropbox/Dropbox"
Expand Down
64 changes: 64 additions & 0 deletions utils/.Xresources
@@ -0,0 +1,64 @@
#define S_base03 #002b36
#define S_base02 #073642
#define S_base01 #586e75
#define S_base00 #657b83
#define S_base0 #839496
#define S_base1 #93a1a1
#define S_base2 #eee8d5
#define S_base3 #fdf6e3

*background: S_base03
*foreground: S_base0
*fadeColor: S_base03
*cursorColor: S_base1
*pointerColorBackground:S_base01
*pointerColorForeground:S_base1

#define S_yellow #b58900
#define S_orange #cb4b16
#define S_red #dc322f
#define S_magenta #d33682
#define S_violet #6c71c4
#define S_blue #268bd2
#define S_cyan #2aa198
#define S_green #859900

!! black dark/light
*color0: S_base02
*color8: S_base03

!! red dark/light
*color1: S_red
*color9: S_orange

!! green dark/light
*color2: S_green
*color10: S_base01

!! yellow dark/light
*color3: S_yellow
*color11: S_base00

!! blue dark/light
*color4: S_blue
*color12: S_base0

!! magenta dark/light!
*color5: S_magenta
*color13: S_violet

!! cyan dark/light
*color6: S_cyan
*color14: S_base1

!! white dark/light
*color7: S_base2
*color15: S_base3

! my customisations

XTerm*faceName: Fira Code,Fira Code Light
XTerm*faceSize: 14
XTerm*loginShell: true
Xft*antialias: true
Xft*autohint: true

0 comments on commit 057e3d8

Please sign in to comment.