File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Copyright (c) 2020 by Chrono
2+
3+ set -o vi
4+ alias l=' ls -lh'
5+
6+ function set-title() {
7+ if [[ -z " $ORIG " ]]; then
8+ ORIG=$PS1
9+ fi
10+ TITLE=" \[\e]2;$* \a\]"
11+ PS1=${ORIG}${TITLE}
12+ }
Original file line number Diff line number Diff line change 1+ # Copyright (c) 2020 by Chrono
2+
3+ [alias]
4+ st = status
5+ ci = commit
6+ br = branch
7+ co = checkout
8+ df = diff
9+ au = add -u .
10+ ll = log --oneline --graph
11+ lg = log --graph
12+ d = difftool
13+ pop = stash pop
14+ [core]
15+ editor = vim
16+ [color]
17+ ui = true
18+ [diff]
19+ tool = vimdiff
20+ [user]
21+ name = xxx
22+ email = xxx
23+ [merge]
24+ tool = vimdiff
25+ [push]
26+ default = matching
Original file line number Diff line number Diff line change 1+ set nu
2+ sy on
3+ set ruler
4+ set smartindent shiftwidth = 4
5+ set tabstop = 4
6+ set expandtab
7+
8+ set listchars = tab :>- ,trail: ~
9+ set list
10+ colorscheme desert
11+
12+ com E e .
You can’t perform that action at this time.
0 commit comments