1
0

initial commit

This commit is contained in:
2021-03-21 18:25:10 +03:00
parent 9d169e5321
commit 28231f278c
59 changed files with 1653 additions and 0 deletions

6
.config/zsh/env/aux.zsh vendored Normal file
View File

@@ -0,0 +1,6 @@
#!/bin/zsh
export NO_AT_BRIDGE=1
export QT_ACCESSIBILITY=0
export MENUCONFIG_COLOR=blackbg

10
.config/zsh/env/history.zsh vendored Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/zsh
## kinda unlimited history
HISTSIZE=10000000
SAVEHIST=10000000
ZSHU[f_hist]="${ZSHU[d_var]}/history"
[ -f "${ZSHU[f_hist]}" ] || touch "${ZSHU[f_hist]}"
HISTFILE="${ZSHU[f_hist]}"

5
.config/zsh/env/ld.so.zsh vendored Normal file
View File

@@ -0,0 +1,5 @@
#!/bin/zsh
typeset -T LD_LIBRARY_PATH ld_library_path
typeset -T LD_PRELOAD ld_preload
typeset -T LD_AUDIT ld_audit

3
.config/zsh/env/pager.zsh vendored Normal file
View File

@@ -0,0 +1,3 @@
#!/bin/zsh
export LESS=RSF

11
.config/zsh/env/quilt.zsh vendored Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/zsh
QUILT_PATCHES="debian/patches"
QUILT_NO_DIFF_INDEX=1
QUILT_NO_DIFF_TIMESTAMPS=1
QUILT_PATCH_OPTS="--reject-format=unified"
QUILT_DIFF_ARGS="-p ab --no-timestamps --no-index --color=auto"
QUILT_REFRESH_ARGS="-p ab --no-timestamps --no-index"
QUILT_COLORS="diff_hdr=1;32:diff_add=1;34:diff_rem=1;31:diff_hunk=1;33:diff_ctx=35:diff_cctx=33"
typeset -x -m 'QUILT*'

13
.config/zsh/env/xdg.zsh vendored Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/zsh
: ${XDG_CONFIG_HOME:=${HOME}/.config}
: ${XDG_CACHE_HOME:=${HOME}/.cache}
: ${XDG_DATA_HOME:=${HOME}/.local/share}
: ${XDG_RUNTIME_DIR:=${TMPDIR}}
: ${XDG_DATA_DIRS:=/usr/local/share:/usr/share}
: ${XDG_CONFIG_DIRS:=/etc/xdg}
typeset -x -m 'XDG*'
export -T XDG_DATA_DIRS xdg_data_dirs
export -T XDG_CONFIG_DIRS xdg_config_dirs