Commit 5b96a90517b3c49ca344ce343d8cc3d3beb94145

Authored by Pedro L Coutin
1 parent c11610773a
Exists in master

more stuff

Showing 3 changed files with 194 additions and 0 deletions Side-by-side Diff

... ... @@ -5,6 +5,7 @@
5 5 # see also csh(1), environ(7).
6 6 #
7 7  
  8 +# solarized thing
8 9 eval `dircolors ~/.dir_colours`
9 10  
10 11 alias h history 25
.dir_colours View file @ 5b96a90
  1 +# Configuration file for dircolors, a utility to help you set the
  2 +# LS_COLORS environment variable used by GNU ls with the --color option.
  3 +# Copyright (C) 1996, 1999-2010 Free Software Foundation, Inc.
  4 +# Copying and distribution of this file, with or without modification,
  5 +# are permitted provided the copyright notice and this notice are preserved.
  6 +# The keywords COLOR, OPTIONS, and EIGHTBIT (honored by the
  7 +# slackware version of dircolors) are recognized but ignored.
  8 +# Below, there should be one TERM entry for each termtype that is colorizable
  9 +TERM Eterm
  10 +TERM ansi
  11 +TERM color-xterm
  12 +TERM con132x25
  13 +TERM con132x30
  14 +TERM con132x43
  15 +TERM con132x60
  16 +TERM con80x25
  17 +TERM con80x28
  18 +TERM con80x30
  19 +TERM con80x43
  20 +TERM con80x50
  21 +TERM con80x60
  22 +TERM cons25
  23 +TERM console
  24 +TERM cygwin
  25 +TERM dtterm
  26 +TERM eterm-color
  27 +TERM gnome
  28 +TERM gnome-256color
  29 +TERM jfbterm
  30 +TERM konsole
  31 +TERM kterm
  32 +TERM linux
  33 +TERM linux-c
  34 +TERM mach-color
  35 +TERM mlterm
  36 +TERM putty
  37 +TERM rxvt
  38 +TERM rxvt-cygwin
  39 +TERM rxvt-cygwin-native
  40 +TERM rxvt-unicode
  41 +TERM screen
  42 +TERM screen-256color
  43 +TERM screen-256color-bce
  44 +TERM screen-bce
  45 +TERM screen-w
  46 +TERM screen.linux
  47 +TERM vt100
  48 +TERM xterm
  49 +TERM xterm-16color
  50 +TERM xterm-256color
  51 +TERM xterm-88color
  52 +TERM xterm-color
  53 +TERM xterm-debian
  54 +# Below are the color init strings for the basic file types. A color init
  55 +# string consists of one or more of the following numeric codes:
  56 +# Attribute codes:
  57 +# 00=none 01=bold 04=underscore 05=blink 07=reverse 08=concealed
  58 +# Text color codes:
  59 +# 30=black 31=red 32=green 33=yellow 34=blue 35=magenta 36=cyan 37=white
  60 +# Background color codes:
  61 +# 40=black 41=red 42=green 43=yellow 44=blue 45=magenta 46=cyan 47=white
  62 +#NORMAL 00 # no color code at all
  63 +#FILE 00 # regular file: use no color at all
  64 +RESET 0 # reset to "normal" color
  65 +DIR 00;34 # directory
  66 +LINK 00;36 # symbolic link. (If you set this to 'target' instead of a
  67 + # numerical value, the color is as for the file pointed to.)
  68 +MULTIHARDLINK 00 # regular file with more than one link
  69 +FIFO 40;33 # pipe
  70 +SOCK 01;35 # socket
  71 +DOOR 01;35 # door
  72 +BLK 40;33;01 # block device driver
  73 +CHR 40;33;01 # character device driver
  74 +ORPHAN 40;31;01 # symlink to nonexistent file, or non-stat'able file
  75 +SETUID 37;41 # file that is setuid (u+s)
  76 +SETGID 30;43 # file that is setgid (g+s)
  77 +CAPABILITY 30;41 # file with capability
  78 +STICKY_OTHER_WRITABLE 30;42 # dir that is sticky and other-writable (+t,o+w)
  79 +OTHER_WRITABLE 34;42 # dir that is other-writable (o+w) and not sticky
  80 +STICKY 37;44 # dir with the sticky bit set (+t) and not other-writable
  81 +# This is for files with execute permission:
  82 +EXEC 00;32
  83 +# List any file extensions like '.gz' or '.tar' that you would like ls
  84 +# to colorize below. Put the extension, a space, and the color init string.
  85 +# (and any comments you want to add after a '#')
  86 +# If you use DOS-style suffixes, you may want to uncomment the following:
  87 +#.cmd 01;32 # executables (bright green)
  88 +#.exe 01;32
  89 +#.com 01;32
  90 +#.btm 01;32
  91 +#.bat 01;32
  92 +# Or if you want to colorize scripts even if they do not have the
  93 +# executable bit actually set.
  94 +#.sh 01;32
  95 +#.csh 01;32
  96 + # archives or compressed (bright red)
  97 +.tar 01;31
  98 +.tgz 01;31
  99 +.arj 01;31
  100 +.taz 01;31
  101 +.lzh 01;31
  102 +.lzma 01;31
  103 +.tlz 01;31
  104 +.txz 01;31
  105 +.zip 01;31
  106 +.z 01;31
  107 +.Z 01;31
  108 +.dz 01;31
  109 +.gz 01;31
  110 +.lz 01;31
  111 +.xz 01;31
  112 +.bz2 01;31
  113 +.bz 01;31
  114 +.tbz 01;31
  115 +.tbz2 01;31
  116 +.tz 01;31
  117 +.deb 01;31
  118 +.rpm 01;31
  119 +.jar 01;31
  120 +.rar 01;31
  121 +.ace 01;31
  122 +.zoo 01;31
  123 +.cpio 01;31
  124 +.7z 01;31
  125 +.rz 01;31
  126 +# image formats
  127 +.jpg 01;35
  128 +.jpeg 01;35
  129 +.gif 01;35
  130 +.bmp 01;35
  131 +.pbm 01;35
  132 +.pgm 01;35
  133 +.ppm 01;35
  134 +.tga 01;35
  135 +.xbm 01;35
  136 +.xpm 01;35
  137 +.tif 01;35
  138 +.tiff 01;35
  139 +.png 01;35
  140 +.svg 01;35
  141 +.svgz 01;35
  142 +.mng 01;35
  143 +.pcx 01;35
  144 +.mov 01;35
  145 +.mpg 01;35
  146 +.mpeg 01;35
  147 +.m2v 01;35
  148 +.mkv 01;35
  149 +.ogm 01;35
  150 +.mp4 01;35
  151 +.m4v 01;35
  152 +.mp4v 01;35
  153 +.vob 01;35
  154 +.qt 01;35
  155 +.nuv 01;35
  156 +.wmv 01;35
  157 +.asf 01;35
  158 +.rm 01;35
  159 +.rmvb 01;35
  160 +.flc 01;35
  161 +.avi 01;35
  162 +.fli 01;35
  163 +.flv 01;35
  164 +.gl 01;35
  165 +.dl 01;35
  166 +.xcf 01;35
  167 +.xwd 01;35
  168 +.yuv 01;35
  169 +.cgm 01;35
  170 +.emf 01;35
  171 +# http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
  172 +.axv 01;35
  173 +.anx 01;35
  174 +.ogv 01;35
  175 +.ogx 01;35
  176 +# audio formats
  177 +.aac 00;33
  178 +.au 00;33
  179 +.flac 00;33
  180 +.mid 00;33
  181 +.midi 00;33
  182 +.mka 00;33
  183 +.mp3 00;33
  184 +.mpc 00;33
  185 +.ogg 00;33
  186 +.ra 00;33
  187 +.wav 00;33
  188 +# http://wiki.xiph.org/index.php/MIME_Types_and_File_Extensions
  189 +.axa 00;33
  190 +.oga 00;33
  191 +.spx 00;33
  192 +.xspf 00;33
  1 +" stolen from somewhere and modified
1 2 set nocompatible " This line must be first or the changes you are expecting
2 3 " may not be the changes that occur
3 4 filetype plugin indent on