mirror of
https://github.com/SeriousBug/dotfiles
synced 2024-10-31 19:17:26 -05:00
add config files for bottom and git
This commit is contained in:
parent
8628b1581c
commit
a8715788a0
|
@ -1,12 +1,9 @@
|
||||||
[helpers]
|
[helpers]
|
||||||
|
|
||||||
[default]
|
[bottom.files]
|
||||||
depends = []
|
"bottom/bottom.toml" = "~/.config/bottom/bottom.toml"
|
||||||
|
|
||||||
[default.files]
|
[git.files]
|
||||||
bootstrap = ""
|
"git/gitconfig" = "~/.gitconfig"
|
||||||
|
|
||||||
[default.variables]
|
[system.variables]
|
||||||
|
|
||||||
[settings]
|
|
||||||
default_target_type = "automatic"
|
|
||||||
|
|
2
bottom/bottom.toml
Normal file
2
bottom/bottom.toml
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
[flags]
|
||||||
|
group_processes = true
|
34
git/gitconfig
Normal file
34
git/gitconfig
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[user]
|
||||||
|
email = kaan@bgenc.com
|
||||||
|
name = Kaan Barmore-Genc
|
||||||
|
[init]
|
||||||
|
defaultBranch = main
|
||||||
|
[pull]
|
||||||
|
rebase = true
|
||||||
|
[pager]
|
||||||
|
diff = delta
|
||||||
|
log = delta
|
||||||
|
reflog = delta
|
||||||
|
show = delta
|
||||||
|
[interactive]
|
||||||
|
diffFilter = delta --color-only
|
||||||
|
[delta]
|
||||||
|
features = side-by-side line-numbers decorations
|
||||||
|
whitespace-error-style = 22 reverse
|
||||||
|
[merge]
|
||||||
|
ff = no
|
||||||
|
[alias]
|
||||||
|
stat = status
|
||||||
|
[core]
|
||||||
|
editor = code --wait
|
||||||
|
[credential]
|
||||||
|
helper = store
|
||||||
|
[filter "lfs"]
|
||||||
|
required = true
|
||||||
|
clean = git-lfs clean -- %f
|
||||||
|
smudge = git-lfs smudge -- %f
|
||||||
|
process = git-lfs filter-process
|
||||||
|
[push]
|
||||||
|
autoSetupRemote = true
|
||||||
|
[submodule]
|
||||||
|
recurse = true
|
|
@ -23,6 +23,7 @@ echo 'autoload -Uz compinit && compinit' >> ~/.zshrc
|
||||||
|
|
||||||
# Install and activate asdf plugins
|
# Install and activate asdf plugins
|
||||||
PLUGINS=(
|
PLUGINS=(
|
||||||
|
"air"
|
||||||
"bat"
|
"bat"
|
||||||
"bottom"
|
"bottom"
|
||||||
"bun"
|
"bun"
|
||||||
|
|
Loading…
Reference in a new issue