Skip to content

Commit 363b523

Browse files
committedDec 28, 2024·
ghostty is out
1 parent 9028686 commit 363b523

File tree

5 files changed

+30
-28
lines changed

5 files changed

+30
-28
lines changed
 

‎.aliases

+3
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,6 @@ alias dc="docker compose"
5454

5555
alias h="history | fzf"
5656
alias tw="tmux-windowizer"
57+
58+
# Git
59+
alias gs="git status"

‎.config/ghostty/config

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
font-family = "Berkeley Mono"
2+
font-size = 14

‎.config/starship.toml

-3
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,5 @@ symbol = " "
1515
[elixir]
1616
symbol = ""
1717

18-
# [git_branch]
19-
# symbol = " "
20-
2118
[buf]
2219
disabled = true

‎.gitconfig

+25-24
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,54 @@
11
[user]
2-
name = Weslei Juan Moser Pereira
3-
email = wesleimsr@gmail.com
2+
name = Weslei Juan Moser Pereira
3+
email = wesleimsr@gmail.com
44

55
[url "ssh://git@github.com/"]
6-
insteadOf = https://github.com/
6+
insteadOf = https://github.com/
77

88
[url "https://github.com/rust-lang/crates.io-index"]
99
insteadOf = https://github.com/rust-lang/crates.io-index
1010

1111
[core]
12-
editor = vim
13-
excludesfile = ~/.globalgitignore
12+
editor = vim
13+
excludesfile = ~/.globalgitignore
1414
pager = delta
1515

1616
[delta]
17-
dark = false
18-
navigate = true
19-
features = line-numbers decorations
20-
file-modified-label = modified:
17+
dark = true
18+
navigate = true
19+
features = line-numbers decorations
20+
file-modified-label = modified:
2121

2222
[delta "decorations"]
23-
commit-style = raw
24-
commit-decoration-style = none
25-
hunk-header-style = omit
26-
hunk-header-decoration-style = none
23+
commit-style = raw
24+
commit-decoration-style = none
25+
hunk-header-style = omit
26+
hunk-header-decoration-style = none
2727

2828
[interactive]
29-
diffFilter = delta --color-only
29+
diffFilter = delta --color-only
3030

3131
[merge]
32-
conflictstyle = diff3
32+
conflictstyle = diff3
3333

3434
[diff]
35-
tool = vimdiff
35+
tool = vimdiff
3636
colorMoved = default
3737

3838
[github]
39-
user = wesleimp
39+
user = wesleimp
4040

4141
[commit]
42-
gpgsign = false
42+
gpgsign = false
4343

4444
[filter "lfs"]
45-
clean = git-lfs clean -- %f
46-
smudge = git-lfs smudge -- %f
47-
process = git-lfs filter-process
48-
required = true
45+
clean = git-lfs clean -- %f
46+
smudge = git-lfs smudge -- %f
47+
process = git-lfs filter-process
48+
required = true
4949

5050
[pull]
51-
rebase = false
51+
rebase = false
52+
5253
[init]
53-
defaultBranch = main
54+
defaultBranch = main

‎.zshrc

-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ export TERMINAL="wezterm"
5353
export BROWSER="brave-browser"
5454
export DOTFILES=$HOME/.dotfiles
5555
export NVIMCONF=$HOME/nvim
56-
export BAT_THEME=gruvbox-dark
5756

5857
export KERL_BUILD_DOCS=yes
5958
export KERL_CONFIGURE_OPTIONS="--without-javac --disable-jit"

0 commit comments

Comments
 (0)
Please sign in to comment.