fix: properly-quoted install.sh + bashrc
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
# minimal sourced by login shells in Coder workspaces
|
||||
export PATH="$HOME/.local/bin:$PATH"
|
||||
export EDITOR="${EDITOR:-nano}"
|
||||
export MPLBACKEND="${MPLBACKEND:-Agg}"
|
||||
|
||||
alias ll='ls -lah --color=auto'
|
||||
alias g='git'
|
||||
alias gs='git status -sb'
|
||||
alias gd='git diff'
|
||||
alias gco='git checkout'
|
||||
alias uvr='uv run'
|
||||
alias uvs='uv sync'
|
||||
|
||||
mkproj() {
|
||||
local name="$1"
|
||||
[ -z "$name" ] && echo 'usage: mkproj <name>' && return 1
|
||||
mkdir -p "$HOME/work/$name" && cd "$HOME/work/$name" && uv init
|
||||
}
|
||||
|
||||
PS1='\[\e[1;32m\]\u@\h\[\e[0m\]:\[\e[1;34m\]\w\[\e[0m\]\$ '
|
||||
@@ -0,0 +1,19 @@
|
||||
[user]
|
||||
name = fkrebs
|
||||
email = fkrebs@nucli.de
|
||||
[init]
|
||||
defaultBranch = main
|
||||
[pull]
|
||||
rebase = true
|
||||
[push]
|
||||
default = simple
|
||||
autoSetupRemote = true
|
||||
[core]
|
||||
editor = nano
|
||||
[diff]
|
||||
algorithm = histogram
|
||||
[alias]
|
||||
s = status -sb
|
||||
co = checkout
|
||||
br = branch
|
||||
lg = log --oneline --graph --decorate -20
|
||||
Reference in New Issue
Block a user