Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/wsl'
Browse files Browse the repository at this point in the history
  • Loading branch information
gzagatti committed Dec 4, 2024
2 parents 8ed627d + 9f0aa4e commit a54e67d
Show file tree
Hide file tree
Showing 14 changed files with 3,807 additions and 1,801 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@ gtk/%:
ln -fs $(dotfiles)/$@ $(workspace)/.config/gtk-3.0/$(@F)
ln -fs $(dotfiles)/$@ $(workspace)/.config/gtk-4.0/$(@F)

ipython/%:
mkdir -p $(workspace)/.ipython/profile_default
ln -fs $(dotfiles)/$@ $(workspace)/.ipython/profile_default/$(@F)

julia/%:
mkdir -p $(workspace)/.julia/config
ln -fs $(dotfiles)/$@ $(workspace)/.julia/config/$(@F)
Expand All @@ -34,6 +38,7 @@ nix/%:

# symlinks to ~/
ctags/% \
editorconfig/% \
git/% \
r/% \
shells/% \
Expand Down Expand Up @@ -74,9 +79,11 @@ jupyter: $(wildcard jupyter/*)
alacritty \
bin \
ctags \
editorconfig \
emacs \
git \
gtk \
ipython \
julia \
kitty \
nix \
Expand Down
10 changes: 10 additions & 0 deletions editorconfig/editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
root = true

[*]
end_of_line = lf
indent_style = space
indent_size = 2

[*.py]
indent_style = space
indent_size = 4
23 changes: 5 additions & 18 deletions firefox/treestyletab.css
Original file line number Diff line number Diff line change
@@ -1,28 +1,15 @@
:root {
--tab-highlighted-glow: #E920A3;
--tab-surface-active: #5F5F5F;
:root.sidebar tab-item {
font-size: 10px !important;
}

:root #background {
background: #4C4C4C;
}

tab-item {
font-size: 12px !important;
:root.sidebar #background {
background-color: #F0F0F4 /* or something background color */;
}

tab-item tab-favicon {
margin-right: 2px;
}

::part(extra-contents-by-tst-active-tab-in-collapsed-tree_piro_sakura_ne_jp) {
background-color: #4C4C4C;
background-color: #F0F0F4;
}

/*tab-item:not(.loading):not(.active):not(.pinned) tab-favicon {
filter: drop-shadow(0px 0px 2.5px white);
}
tab-item:not(.some-descendants-highlighted) ::part(extra-contents-by-tst-active-tab-in-collapsed-tree_piro_sakura_ne_jp favicon) {
filter: drop-shadow(0px 0px 5px white);
}*/
16 changes: 11 additions & 5 deletions git/gitconfig
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
[user]
name = gzagatti
email = [email protected]
[include]
path = .gitcredentials
[core]
autocrlf = input
attributesfile = \"$HOME/.gitattributes\"
[ui]
color = true
[color "decorate"]
branch = green brightgreen
HEAD = red brightred
remoteBranch = blue brightblue
tag = magenta brightmagenta
stash = green
grafted = blue
[log]
graphColors=red,green,blue,magenta,cyan
[push]
default = simple
[color]
Expand All @@ -18,8 +26,6 @@
s = status -s
lg = log --oneline --decorate --all --graph
wdiff = diff --word-diff
[github]
user = gzagatti
[hub]
protocol = https
[filter "lfs"]
Expand Down
Loading

0 comments on commit a54e67d

Please sign in to comment.