From 04b9e0a7d3737bbbba8d3ba32d88e4bd1699c030 Mon Sep 17 00:00:00 2001 From: Mitja Felicijan Date: Thu, 1 May 2025 05:19:12 +0200 Subject: Update to dotfiles --- .config/ghostty/config | 12 ------------ .shenanigans.sh | 22 ++++++++++++++++------ .vimrc | 1 - 3 files changed, 16 insertions(+), 19 deletions(-) delete mode 100644 .config/ghostty/config diff --git a/.config/ghostty/config b/.config/ghostty/config deleted file mode 100644 index 79cc32d..0000000 --- a/.config/ghostty/config +++ /dev/null @@ -1,12 +0,0 @@ -theme = deep -background = 000000 -foreground = dddddd -window-width = 100 -window-height = 50 -cursor-style = block -cursor-style-blink = false -shell-integration-features = no-cursor -confirm-close-surface = false -font-family = Berkeley Mono -font-style = Bold -font-size = 15 diff --git a/.shenanigans.sh b/.shenanigans.sh index 8bc1c2e..a870c4f 100755 --- a/.shenanigans.sh +++ b/.shenanigans.sh @@ -1,7 +1,7 @@ # Software list: # git gcc make cmake busybox cifs-utils tree hstr curl # s3cmd xmlstarlet htop nvtop tmux xclip jq pipx newsboat -# stow rsync entr vim vifm xxd sbcl rlwrap tig +# stow rsync entr vim vifm xxd sbcl rlwrap tig ack # clang clang-tidy clang-tools-extra clangd clang-analyzer # Linters & Additonal stuff: # pipx install pyright @@ -42,13 +42,17 @@ if [[ "${BASH_SOURCE[0]}" != "${0}" ]]; then alias tmux='tmux -u' alias server='python3 -m http.server 6969' alias newsboat='newsboat -r -u ~/.feeds.txt' + alias ack='ack -S' alias gg='lazygit' alias gd='lazydocker' + alias tf='terraform' + alias tg='terragrunt' # Custom folder jump commands. alias j='cd ~/Junk' alias p='cd ~/Vault/projects' alias s='cd ~/Vault/sandbox' + alias n='cd ~/Vault/notes' alias d='cd ~/Downloads' # Additional path settings. @@ -78,17 +82,23 @@ backup() { VHOME=/home/$USER/Vault ME=$(whoami)@$(hostname) + # Create folders etc. + cd $VHOME && mkdir -p $VHOME/dotfiles + # Everything dotfiles. - cd $VHOME && mkdir -p $VHOME/dotfiles && cd $VHOME/dotfiles + cd $VHOME/dotfiles rsync -azhv /home/$USER/.bash_history_infinite bash_history_infinite rsync -azhv /home/$USER/.ssh/ ssh rsync -azhv /home/$USER/.aws/ aws # WoW settings and addons. - cd $VHOME - rsync -azhv /home/$USER/Games/turtlewow/WTF turtlewow - rsync -azhv /home/$USER/Games/turtlewow/SuperWoWhook.dll turtlewow/ - rsync -azhv /home/$USER/Games/turtlewow/start.sh turtlewow/ + cd $VHOME/dotfiles + zip -r twow.zip \ + /home/$USER/Games/turtlewow/WTF \ + /home/$USER/Games/turtlewow/SuperWoWhook.dll \ + /home/$USER/Games/turtlewow/nampower.dll \ + /home/$USER/Games/turtlewow/dlls.txt \ + /home/$USER/Games/turtlewow/wow.desktop # Sync with NAS. rsync -azhvpog \ diff --git a/.vimrc b/.vimrc index cc86cf5..35ab40d 100644 --- a/.vimrc +++ b/.vimrc @@ -31,6 +31,5 @@ let g:ale_hover_to_floating_preview = 1 let g:ale_detail_to_floating_preview = 1 let g:ale_virtualtext_cursor = 0 let g:ale_set_quickfix = 1 - let g:ale_linters = { 'c': ['clangd'], 'cpp': ['clangd'] } let g:ale_fixers = { 'c': ['clangd'], 'cpp': ['clangd'] } -- cgit v1.2.3