mirror of
https://github.com/guilhermewerner/dotfiles
synced 2025-06-20 13:04:34 +00:00
Update dotfiles
This commit is contained in:
13
Config/.gitconfig
Normal file
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
3
Config/.ssh/config
Normal file
@ -0,0 +1,3 @@
|
||||
Host *
|
||||
AddKeysToAgent yes
|
||||
IdentitiesOnly yes
|
3
Config/.wslconfig
Normal file
3
Config/.wslconfig
Normal file
@ -0,0 +1,3 @@
|
||||
[wsl2]
|
||||
memory=8GB
|
||||
processors=4
|
1
Config/.zshenv
Normal file
1
Config/.zshenv
Normal file
@ -0,0 +1 @@
|
||||
. "$HOME/.cargo/env"
|
33
Config/.zshrc
Normal file
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
|
Reference in New Issue
Block a user