Update dotfiles

This commit is contained in:
Werner
2022-06-11 11:47:10 -03:00
parent bff7953214
commit 2e860bad43
15 changed files with 174 additions and 163 deletions

13
Config/.gitconfig Normal file

@ -0,0 +1,13 @@
[filter "lfs"]
clean = git-lfs clean -- %f
smudge = git-lfs smudge -- %f
process = git-lfs filter-process
required = true
[user]
name = Werner
email = guilhermeqwerner@gmail.com
[core]
longpaths = true
fileMode = false
[init]
defaultBranch = "main"

3
Config/.ssh/config Normal file

@ -0,0 +1,3 @@
Host *
AddKeysToAgent yes
IdentitiesOnly yes

3
Config/.wslconfig Normal file

@ -0,0 +1,3 @@
[wsl2]
memory=8GB
processors=4

1
Config/.zshenv Normal file

@ -0,0 +1 @@
. "$HOME/.cargo/env"

33
Config/.zshrc Normal file

@ -0,0 +1,33 @@
export ZSH="$HOME/.oh-my-zsh"
ZSH_THEME="spaceship"
DISABLE_UNTRACKED_FILES_DIRTY="true"
SPACESHIP_PROMPT_ORDER=(
user
dir
host
git
exec_time
line_sep
jobs
exit_code
char
)
SPACESHIP_USER_SHOW=always
SPACESHIP_PROMPT_ADD_NEWLINE=false
SPACESHIP_PROMPT_SEPARATE_LINE=false
DISABLE_AUTO_TITLE="true"
DISABLE_UNTRACKED_FILES_DIRTY="true"
plugins=(
asdf
git
zsh-autosuggestions
)
source $ZSH/oh-my-zsh.sh