From 7ce8676555c3cc5651a73d0b7edc36f77e9afa03 Mon Sep 17 00:00:00 2001 From: Jonas Hahn Date: Fri, 26 Dec 2025 03:32:18 +0100 Subject: [PATCH] Fix for servers --- .gitignore | 6 ++++-- cli/dot-config/weechat/sec.conf | 20 -------------------- home/dot-bashrc | 3 +-- home/dot-common_shell | 1 + 4 files changed, 6 insertions(+), 24 deletions(-) delete mode 100644 cli/dot-config/weechat/sec.conf diff --git a/.gitignore b/.gitignore index d0e708c..6de2558 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,8 @@ # Ignore the yazi packages and only store the commit in the dotfiles -/cli/dot-config/yazi/flavors -/cli/dot-config/yazi/plugins +cli/dot-config/yazi/flavors +cli/dot-config/yazi/plugins +cli/dot-config/weechat/sec.conf # No database home/dot-newsboat/cache.db +home/dot-newsboat/cache.db.lock diff --git a/cli/dot-config/weechat/sec.conf b/cli/dot-config/weechat/sec.conf deleted file mode 100644 index 481babb..0000000 --- a/cli/dot-config/weechat/sec.conf +++ /dev/null @@ -1,20 +0,0 @@ -# -# weechat -- sec.conf -# -# WARNING: It is NOT recommended to edit this file by hand, -# especially if WeeChat is running. -# -# Use commands like /set or /fset to change settings in WeeChat. -# -# For more info, see: https://weechat.org/doc/weechat/quickstart/ -# - -[crypt] -cipher = aes256 -hash_algo = sha256 -passphrase_command = "" -salt = on - -[data] -__passphrase__ = on -libera_password = "DDE143470687466BB81366D42CA948C0AC4C4EDFD698EFD9AF97147F3D69C5B9C4E844C80C018C0274B955D8EBF80330844283A4FA2EEAD2AB3D" diff --git a/home/dot-bashrc b/home/dot-bashrc index d801ee3..f0586a8 100644 --- a/home/dot-bashrc +++ b/home/dot-bashrc @@ -2,6 +2,7 @@ source $HOME/.common_shell if [ -f /etc/NIXOS ]; then eval "$(starship init bash)" + eval "$(zoxide init bash)" else PS1='\u@\h:\w\$ ' fi @@ -14,7 +15,5 @@ function r() { rm -f -- "$tmp" } -eval "$(zoxide init bash)" - # Added by GitLab Knowledge Graph installer export PATH="$HOME/.local/bin:$PATH" diff --git a/home/dot-common_shell b/home/dot-common_shell index fd2a202..ffca690 100644 --- a/home/dot-common_shell +++ b/home/dot-common_shell @@ -7,6 +7,7 @@ export HTTP_HOME="duckduckgo.com" export RANGER_LOAD_DEFAULT_RC=false export PATH=$HOME/programs_local/:$HOME/.cargo/bin:~/projects/scripts:/usr/local/bin:$PATH export PATH=$HOME/programs_local/:~/projects/scripts:~/projects/scripts/other:$PATH +export TERM="xterm" export MANPAGER="nvim +Man!" export GOPATH=$HOME/.go export PATH=$HOME/.go/bin:$PATH