Compare commits

...

4 Commits

Author SHA1 Message Date
95d17a86f0 allacrity: added window opacity
Signed-off-by: Marcin Woźniak <y0rune@aol.com>
2026-01-05 07:21:50 +01:00
c5b6a3d6bc update-pkg: removed --break-system-packages - it is defined in .config/pip.conf
Signed-off-by: Marcin Woźniak <y0rune@aol.com>
2026-01-04 19:57:03 +01:00
a60bbfb5a0 pip: added break-system-packages as true value
Signed-off-by: Marcin Woźniak <y0rune@aol.com>
2026-01-04 19:56:11 +01:00
349b9f5756 lazygit: edited configuration
Signed-off-by: Marcin Woźniak <y0rune@aol.com>
2026-01-04 19:55:41 +01:00
5 changed files with 24 additions and 2 deletions

View File

@@ -15,6 +15,9 @@ bindings = [
{ key = "V", mods = "Control|Shift", action = "Paste" },
]
[window]
opacity = 0.95
[font]
size = 20

View File

@@ -1,6 +1,7 @@
refresher:
refreshInterval: 60
gui:
useHunkModeInStagingView: false
mainPanelSplitMode: "horizontal"
theme:
selectedLineBgColor:

2
.config/pip/pip.conf Normal file
View File

@@ -0,0 +1,2 @@
[global]
break-system-packages = true

View File

@@ -31,7 +31,7 @@ else
pip="/opt/homebrew/bin/pip$PYTHONVERSION"
fi
PIPEXT="--user --force --quiet --break-system-packages --no-warn-script-location"
PIPEXT="--user --force --quiet --no-warn-script-location"
PIPEXTPRE="--pre $PIPEXT"
# Gentoo release
@@ -85,7 +85,7 @@ function command_exists() {
function update_pip() {
# Update the pip
if [[ "$(uname)" == "Darwin" ]]; then
$python -m pip install --upgrade pip --user --no-warn-script-location --break
$python -m pip install --upgrade pip --user --no-warn-script-location
elif [[ -f $GENTOO ]]; then
$install dev-python/pip
fi

View File

@@ -0,0 +1,16 @@
refresher:
refreshInterval: 60
gui:
useHunkModeInStagingView: false
mainPanelSplitMode: "horizontal"
theme:
selectedLineBgColor:
- "#413660"
git:
autoFetch: true
pagers:
- colorArg: always
commit:
signOff: true
pull:
mode: "rebase"