Update
| Author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-11-27 05:40:07 +0100 |
| Committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2024-11-27 05:40:07 +0100 |
| Commit | 44dee7bfffe482f1bfb71991ae2209bd25dcca43 (patch) |
|
-rwxr-xr-x |
.shenanigans.sh | 12 | |
-rw-r--r-- |
.vimrc | 2 |
2 files changed, 9 insertions, 5 deletions
| diff --git a/.shenanigans.sh b/.shenanigans.sh | |||
| ... | |||
| 72 | VHOME=/home/$USER/Vault |
72 | VHOME=/home/$USER/Vault |
| 73 | ME=$(whoami)@$(hostname) |
73 | ME=$(whoami)@$(hostname) |
| 74 | 74 | ||
| 75 | mkdir -p $VHOME/dotfiles |
75 | # Everything dotfiles. |
| 76 | cd $VHOME/dotfiles |
76 | cd $VHOME && mkdir -p $VHOME/dotfiles && cd $VHOME/dotfiles |
| 77 | |||
| 78 | # Make a copy of certain files. |
||
| 79 | rsync -azhv /home/$USER/.bash_history_infinite bash_history_infinite |
77 | rsync -azhv /home/$USER/.bash_history_infinite bash_history_infinite |
| 80 | rsync -azhv /home/$USER/.ssh/ ssh |
78 | rsync -azhv /home/$USER/.ssh/ ssh |
| 81 | rsync -azhv /home/$USER/.aws/ aws |
79 | rsync -azhv /home/$USER/.aws/ aws |
| 82 | rsync -azhv /home/$USER/.gnupg/ gnupg/ |
80 | rsync -azhv /home/$USER/.gnupg/ gnupg/ |
| 81 | |||
| 82 | # WoW settings and addons. |
||
| 83 | cd $VHOME && mkdir -p $VHOME/twow && cd $VHOME/twow |
||
| 84 | rsync -azhv /home/$USER/Games/turtlewow/Interface . |
||
| 85 | rsync -azhv /home/$USER/Games/turtlewow/WTF . |
||
| 86 | rsync -azhv /home/$USER/Games/turtlewow/start.sh . |
||
| 83 | 87 | ||
| 84 | # Sync with NAS. |
88 | # Sync with NAS. |
| 85 | rsync -azhvpog \ |
89 | rsync -azhvpog \ |
| ... | |||
| diff --git a/.vimrc b/.vimrc | |||
| ... | |||
| 26 | nmap <silent> gd :ALEGoToDefinition<cr> |
26 | nmap <silent> gd :ALEGoToDefinition<cr> |
| 27 | nmap <silent> re :ALERename<cr> |
27 | nmap <silent> re :ALERename<cr> |
| 28 | 28 | ||
| 29 | let g:ale_completion_enabled = 1 |
29 | let g:ale_completion_enabled = 0 |
| 30 | let g:ale_hover_to_floating_preview = 1 |
30 | let g:ale_hover_to_floating_preview = 1 |
| 31 | let g:ale_detail_to_floating_preview = 1 |
31 | let g:ale_detail_to_floating_preview = 1 |
| 32 | let g:ale_floating_window_border = 0 |
32 | let g:ale_floating_window_border = 0 |
| ... | |||