diff --git a/.config/ghostty/config b/.config/ghostty/config deleted file mode 100644 index 79cc32d3ae4602a10bd0849f226a9203002063b7..0000000000000000000000000000000000000000 --- 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 8bc1c2e3f78e2fe9ff805c196641100cdfb5ed70..a870c4f584b38f3c067f9cd8363bded7e482a1cd 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 @@ alias less='less -R' 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 @@ CWD=$(pwd) 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 cc86cf5095b32cefb370a6e62f3b6f276e9aa7bc..35ab40d8f939816bc1f1730af7f4107ea661c087 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'] }