Update dotfiles/.local/share/chezmoi/.chezmoidata.yaml, dotfiles/.local/share/chezmoi/private_dot_config/shell/aliases.tmpl, dotfiles/.local/share/chezmoi/private_dot_config/shell/exports, dotfiles/.local/share/chezmoi/.chezmoiexternal.toml, dotfiles/.local/share/chezmoi/private_dot_config/git/config.tmpl, dotfiles/.local/share/chezmoi/dot_editorconfig

Deleted dotfiles/.local/share/chezmoi/dot_gitconfig.tmpl
This commit is contained in:
Brian Zalewski 2022-11-22 17:26:04 +00:00
parent 4b3d8a1956
commit 023e8bcc14
7 changed files with 52 additions and 6 deletions

View file

@ -46,6 +46,9 @@ alternatives:
pacman: bottom pacman: bottom
scoop: bottom scoop: bottom
snap: bottom snap: bottom
bw:
choco: bitwarden-cli
snap: bw
gdu: gdu:
brew: gdu brew: gdu
go: github.com/dundee/gdu/v5/cmd/gdu@latest go: github.com/dundee/gdu/v5/cmd/gdu@latest
@ -63,6 +66,17 @@ alternatives:
- git - git
brew: git-lfs brew: git-lfs
scoop: git-lfs scoop: git-lfs
gnu:
brew:
- coreutils
- findutils
- gawk
- gnu-getopt
- gnu-indent
- gnu-tar
- gnu-sed
- gnutls
- grep
lazygit: lazygit:
brew: lazygit brew: lazygit
choco: lazygit choco: lazygit
@ -149,6 +163,12 @@ alternatives:
choco: shotcut choco: shotcut
flatpak: org.shotcut.Shotcut flatpak: org.shotcut.Shotcut
snap: shotcut snap: shotcut
tmux:
brew:
- awk
- gnu-sed
- perl
- tmux
tree-sitter-cli: tree-sitter-cli:
cargo: tree-sitter-cli cargo: tree-sitter-cli
volta: volta:

View file

@ -16,6 +16,13 @@
type = "file" type = "file"
url = "https://raw.githubusercontent.com/trapd00r/LS_COLORS/master/lscolors.sh" url = "https://raw.githubusercontent.com/trapd00r/LS_COLORS/master/lscolors.sh"
refreshPeriod = "{{ $refreshPeriod }}" refreshPeriod = "{{ $refreshPeriod }}"
[".config/tmux/tmux.conf"]
type = "file"
url = "https://raw.githubusercontent.com/gpakosz/.tmux/master/.tmux.conf"
refreshPeriod = "{{ $refreshPeriod }}"
[".config/tmux/tmux.conf.local"]
type = "file"
url = "https://raw.githubusercontent.com/gpakosz/.tmux/master/.tmux.conf.local"
[".local/antigen.zsh"] [".local/antigen.zsh"]
type = "file" type = "file"
url = "https://raw.githubusercontent.com/zsh-users/antigen/develop/bin/antigen.zsh" url = "https://raw.githubusercontent.com/zsh-users/antigen/develop/bin/antigen.zsh"

View file

@ -0,0 +1,15 @@
# https://editorconfig.org
root = true
[*]
charset = utf-8
indent_style = space
indent_size = 2
end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.md]
insert_final_newline = false
trim_trailing_whitespace = false

View file

@ -1,2 +0,0 @@
[user]
email = {{ .email | quote }}

View file

@ -112,7 +112,7 @@
autocorrect = 20 autocorrect = 20
[init] [init]
defaultBranch = master defaultBranch = master
templatedir = /Users/bzalewski/.local/git-templates templatedir = ~/.config/git/template
[interactive] [interactive]
diffFilter = delta --color-only --features=interactive diffFilter = delta --color-only --features=interactive
[merge] [merge]

View file

@ -1,3 +1,12 @@
{{- if eq .chezmoi.os "darwin" }}
### macOS Polyfills
if command -v brew > /dev/null; then
PATH="$(brew --prefix)/opt/coreutils/libexec/gnubin:$PATH"
PATH="$(brew --prefix)/opt/gnu-indent/libexec/gnubin:$PATH"
PATH="$(brew --prefix)/opt/gnu-sed/libexec/gnubin:$PATH"
fi
{{- end }}
### bat ### bat
if command -v bat > /dev/null; then if command -v bat > /dev/null; then
export MANPAGER="sh -c 'col -bx | bat -l man -p'" export MANPAGER="sh -c 'col -bx | bat -l man -p'"

View file

@ -207,9 +207,6 @@ export PGSERVICEFILE="$XDG_CONFIG_HOME/pg/pg_service.conf"
### Readline ### Readline
export INPUTRC="$XDG_CONFIG_HOME/readline/inputrc" export INPUTRC="$XDG_CONFIG_HOME/readline/inputrc"
### Rear
# https://github.com/rear/rear/blob/master/doc/user-guide/03-configuration.adoc
### Redis ### Redis
export REDISCLI_HISTFILE="$XDG_DATA_HOME/redis/rediscli_history" export REDISCLI_HISTFILE="$XDG_DATA_HOME/redis/rediscli_history"
export REDISCLI_RCFILE="$XDG_CONFIG_HOME/redis/redisclirc" export REDISCLI_RCFILE="$XDG_CONFIG_HOME/redis/redisclirc"