cmder profile, typo

This commit is contained in:
Wouter Groeneveld 2017-06-09 13:12:31 +02:00
parent e9e5c3f18f
commit c74f176309
2 changed files with 37 additions and 1 deletions

View File

@ -5,7 +5,7 @@ tags: ['cooking', 'development', 'principles' ]
published: true
---
A lot of people seem to think I'm the kind of chef who uses loads and loads of ingredients, combining and layering without thinking twice. We were having a discussion about what to cook for dinner this evening. It's ['donerdag veggiedag'](http://www.evavzw.be/donderdag-veggiedag), an initiative from the Belgian EVA VZW to eat a vegetarian meal each thursday, and since I'm a vegetarian, it's generally accepted that I should know a lot of good recipes.
A lot of people seem to think I'm the kind of chef who uses loads and loads of ingredients, combining and layering without thinking twice. We were having a discussion about what to cook for dinner this evening. It's ['donderdag veggiedag'](http://www.evavzw.be/donderdag-veggiedag), an initiative from the Belgian EVA VZW to eat a vegetarian meal each thursday, and since I'm a vegetarian, it's generally accepted that I should know a lot of good recipes.
> Friend: "So, what's for dinner today, veggie?"<br/>
Me "Uhm, act-"<br/>

View File

@ -0,0 +1,36 @@
+++
title = "cmder config"
draft = false
tags = [
"unix",
"shellconfig",
"cmder"
]
date = "2017-06-09"
+++
# Cmder user-profile.cmd
```bash
;= @echo off
;= rem Call DOSKEY and use this file as the macrofile
;= %SystemRoot%\system32\doskey /listsize=1000 /macrofile=%0%
;= rem In batch mode, jump to the end of the file
;= goto:eof
;= Add aliases below here
e.=explorer .
gl=git log --oneline --all --graph --decorate $*
ls=ls --show-control-chars -F --color $*
pwd=cd
clear=cls
history=cat "%CMDER_ROOT%\config\.history"
unalias=alias /d $1
vi=vim $*
cmderr=cd /d "%CMDER_ROOT%"
checkout=SET argument=$* $t SET filepath=%argument:Modules/=% $t mkdir "c:\Sources\%filepath%" $t svn checkout https://websvn.prato.be:8443/svn/$* "c:\Sources\%filepath%"
update=svn update "c:\Sources\$*\trunk"
startvs=start "C:\Sources\$*\trunk\$*.sln" /D "C:\Sources\$*\trunk"
ga=git add -A
gs=git status
gc=git commit -m "$*"
gp=git push -u origin $*
```