From 2416e90999c31a3ba2b1ff17f8d98320c3d9190c Mon Sep 17 00:00:00 2001 From: Gnarwhal Date: Sun, 4 Aug 2024 06:47:08 +0000 Subject: [PATCH] Don't forget to use trash-cli. And a couple other things. --- .config/helix/languages.toml | 8 ++++++++ .zsh/no_rm.zsh | 1 + .zshrc | 4 ++-- 3 files changed, 11 insertions(+), 2 deletions(-) create mode 100644 .zsh/no_rm.zsh diff --git a/.config/helix/languages.toml b/.config/helix/languages.toml index 2903dc6..95a7e1c 100644 --- a/.config/helix/languages.toml +++ b/.config/helix/languages.toml @@ -6,6 +6,14 @@ indent = { tab-width = 4, unit = "\t" } name = "cpp" indent = { tab-width = 4, unit = "\t" } +[[language]] +name = "css" +indent = { tab-width = 4, unit = "\t" } + +[[language]] +name = "html" +indent = { tab-width = 4, unit = "\t" } + [[language]] name = "java" indent = { tab-width = 4, unit = "\t" } diff --git a/.zsh/no_rm.zsh b/.zsh/no_rm.zsh new file mode 100644 index 0000000..764e555 --- /dev/null +++ b/.zsh/no_rm.zsh @@ -0,0 +1 @@ +alias rm='echo "Use trash, silly :)"; false' diff --git a/.zshrc b/.zshrc index c22d6ef..4b2f7a1 100644 --- a/.zshrc +++ b/.zshrc @@ -36,8 +36,8 @@ zstyle ':completion:*' matcher-list '' 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' export EDITOR=hx -if [ -f $HOME/.zsh/flatpak_steam.zsh ]; then - source $HOME/.zsh/flatpak_steam.zsh +if [ -f $HOME/.zsh/no_rm.zsh ]; then + source $HOME/.zsh/no_rm.zsh fi plugins=(git)