This file contains hidden or 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 PATH="/usr/local/bin:/usr/local/sbin:~/bin:$PATH" | |
export EDITOR='subl -w' | |
export SVN_REP="/Users/gunther/Documents/SVN" | |
export CLICOLOR=1 | |
# use yellow for directories | |
export LSCOLORS=dxfxcxdxbxegedabagacad |
This file contains hidden or 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
if has('statusline') | |
set statusline=%<%f\ " Filename | |
set statusline+=%w%h%m%r " Options | |
set statusline+=%{fugitive#statusline()} " Git Hotness | |
set statusline+=\ [%{&ff}/%Y] " filetype | |
set statusline+=\ [%{getcwd()}] " current dir | |
set statusline+=%=%-14.(Line:\ %l\ of\ %L\ [%p%%]\ -\ Col:\ %c%V%) " Right aligned file nav info | |
endif |
This file contains hidden or 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 1.2 | |
" Script create :IMG command, whitch insert HTML IMG tag | |
" with fill atributes width and height. | |
" | |
" It's need _identify_ utility from ImageMagic! | |
" | |
" (c) Petr Mach <[email protected]>, 2003 | |
" http://iglu.cz/wraith/ | |
" | |
" Call it without parameter for file browser for selecting image. |
This file contains hidden or 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
call NERDTreeAddKeyMap({ | |
\ 'key': 'b', | |
\ 'callback': 'NERDTreeInsertImage', | |
\ 'quickhelpText': 'Insert XHTML tag of image' }) | |
function! NERDTreeInsertImage() | |
let n=g:NERDTreeFileNode.GetSelected() | |
if n!={} | |
let path=escape(n.path.str(),' ') | |
let theWH=substitute(system('identify -format %wx%h "'.path.'"'),'\n','','') |
This file contains hidden or 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
@include handhelds { | |
table.responsive { | |
width: 100%; | |
thead { | |
display: none; | |
} | |
tr { | |
display: block; | |
} | |
td, th { |
This file contains hidden or 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
.drop-shadow { | |
background: #9479fa; | |
} | |
.drop-shadow.top { | |
box-shadow: 0 -4px 2px -2px rgba(0,0,0,0.4) | |
} | |
.drop-shadow.right { | |
box-shadow: 4px 0 2px -2px rgba(0,0,0,0.4) |
This file contains hidden or 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
div[class*="emphasize-"] { | |
background: #69D2E7; | |
} | |
.emphasize-dark { | |
box-shadow: 0 0 5px 2px rgba(0,0,0,.35) | |
} | |
.emphasize-light { | |
box-shadow: 0 0 0 10px rgba(255,255,255,.25) |
This file contains hidden or 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
div[class*="embossed"] { | |
background: #8ec12d; | |
color: #333; | |
text-shadow: 0 1px 1px rgba(255,255,255,0.9); | |
} | |
.embossed-light { | |
border: 1px solid rgba(0,0,0,0.05); | |
box-shadow: inset 0 1px 0 rgba(255,255,255,0.7); | |
} |
This file contains hidden or 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
div[class*="gradient"]{ | |
background-color: #DEB8A0; | |
box-shadow: 0 0 0 1px #a27b62; | |
} | |
.gradient-light-linear { | |
background-image: linear-gradient(rgba(255,255,255,.5), rgba(255,255,255,0)); | |
} | |
.gradient-dark-linear { |
This file contains hidden or 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
div[class*="rounded"] { | |
background: #fca1cc; | |
} | |
.light-rounded { | |
border-radius: 3px; | |
} | |
.heavy-rounded { | |
border-radius: 8px; |
OlderNewer