added some options
This commit is contained in:
parent
1ccd0fc90b
commit
21b19c6af3
3 changed files with 5 additions and 9 deletions
|
@ -1,9 +1,6 @@
|
|||
shell = "zsh"
|
||||
|
||||
# own files
|
||||
[plugins.disableflow]
|
||||
inline = 'stty -ixon'
|
||||
|
||||
[plugins.localenv]
|
||||
local = "~/.local/share/zsh/config"
|
||||
use = ["env.zsh"]
|
||||
|
@ -84,5 +81,5 @@ use = ["evalstuff.zsh"]
|
|||
|
||||
[plugins.ownconfigs]
|
||||
local = "~/.config/zsh/files/"
|
||||
use = ["{sshcomp,aliases,functions,distroicon}.zsh"]
|
||||
use = ["{options,sshcomp,aliases,functions,distroicon}.zsh"]
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ export PYTHONSTARTUP=/etc/python/pythonrc
|
|||
# stuff
|
||||
export ZELLIJ_AUTO_ATTACH=true
|
||||
export ZELLIJ_AUTO_EXIT=true
|
||||
export TERMINALNAME=$(fastfetch --pipe 2>/dev/null | grep Terminal: | awk '{print $2}')
|
||||
export TERMINALNAME=$(fastfetch --pipe -s Terminal 2>/dev/null | awk '{print $2}')
|
||||
export MANROFFOPT="-c"
|
||||
|
||||
# zsh specific
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
test -v DISTROBOX_HOST_HOME && { unset ZDOTDIR; exec zsh } # fix distrobox
|
||||
test "x$TERMINALNAME" = "xalacritty" && eval "$(zellij setup --generate-auto-start zsh)" # autostart zellij only in alacritty
|
||||
|
||||
# deduplicate path and add several other paths to PATH
|
||||
# deduplicate path
|
||||
typeset -U path PATH
|
||||
export PATH="$HOME"/.local/bin:"$PATH" # local bin
|
||||
export PATH="$XDG_DATA_HOME"/JetBrains/Toolbox/scripts:"$PATH" # jetbrains toolbox
|
||||
export PATH=/usr/lib/jvm/default/bin:"$PATH" # java on archlinux
|
||||
path+=("$XDG_DATA_HOME"/JetBrains/Toolbox/scripts) # jetbrains toolbox
|
||||
path+=("$HOME/.local/bin) # local bin
|
||||
|
||||
# startup banner
|
||||
potentialBanner=('joke bofh' 'joke dad' 'joke hq dijkstra' 'joke hq knuth' 'joke hq perlis' 'joke hq misc' 'colorscript random' 'fastfetch')
|
||||
|
|
Loading…
Add table
Reference in a new issue