Skip to content

Instantly share code, notes, and snippets.

View kurelen's full-sized avatar

Alexander Jandt kurelen

  • Berlin, Germany
View GitHub Profile
@kurelen
kurelen / .vscodestyles.css
Created May 9, 2019 08:52
Visual Studio Code css styles
.monaco-shell {
font-family: "Operator Mono", "Inconsolata", monospace;
}
/* This makes the dirty tab circle yellow */
.vs-dark
.monaco-workbench
> .part.editor
> .content
.editor-group-container
@kurelen
kurelen / .bash_profile
Created May 9, 2019 08:51
bash settings
alias ls='ls -FG'
export PS1="\n\[\e[01;33m\]\u\[\e[0m\]\[\e[00;37m\]@\[\e[0m\]\[\e[01;36m\]\h\[\e[0m\]\[\e[00;37m\] \t \[\e[0m\]\[\e[01;35m\]\w\[\e[0m\]\[\e[01;37m\] \[\e[0m\]\n$ "
export GREP_OPTIONS='--color=always'
export GREP_COLOR='1;37;41'
alias cat='printf "\e[34m"; cat'
export PATH="/usr/local/sbin:$PATH"
@kurelen
kurelen / settings.json
Last active May 9, 2019 08:53
Visual Studio Code Settings
{
"editor.tabSize": 2,
"emmet.includeLanguages": {
"html": "html",
"javascript": "javascriptreact"
},
"workbench.colorTheme": "Cobalt2",
"workbench.iconTheme": "material-icon-theme",
"workbench.colorCustomizations": {
"editorRuler.foreground": "#4f83cc"