aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x.shenanigans.sh9
-rw-r--r--.vimrc3
2 files changed, 7 insertions, 5 deletions
diff --git a/.shenanigans.sh b/.shenanigans.sh
index 86f26dd..bdf8f3b 100755
--- a/.shenanigans.sh
+++ b/.shenanigans.sh
@@ -39,6 +39,7 @@ alias d='cd ~/Downloads'
39# Additional path settings. 39# Additional path settings.
40export PATH=$HOME/Applications:$PATH 40export PATH=$HOME/Applications:$PATH
41export PATH=$HOME/go/bin:$PATH 41export PATH=$HOME/go/bin:$PATH
42export PATH=$HOME/.local/bin:$PATH
42export PATH=/usr/local/go/bin:$PATH 43export PATH=/usr/local/go/bin:$PATH
43 44
44# Language servers. 45# Language servers.
@@ -60,11 +61,11 @@ if [[ $- =~ .i. ]]; then bind '"\C-h": "\C-a hstr -- \C-j"'; fi
60# This is meant to be used on Debian 11+. 61# This is meant to be used on Debian 11+.
61provision() { 62provision() {
62 doas apt install \ 63 doas apt install \
63 build-essential git gcc make busybox cifs-utils tree hstr s3cmd \ 64 build-essential git gcc make cmake busybox cifs-utils tree hstr \
64 xmlstarlet htop nvtop tmux picom scrot xclip mc ripgrep jq \ 65 s3cmd xmlstarlet htop nvtop tmux scrot xclip mc ripgrep jq \
65 rsync doas newsboat entr clang clang-tidy clang-tools \ 66 rsync entr clang clang-tidy clang-tools pulseaudio-utils \
66 libx11-dev libxinerama-dev libxft-dev x11-xserver-utils \ 67 libx11-dev libxinerama-dev libxft-dev x11-xserver-utils \
67 stow podman podman-compose 68 stow podman podman-compose
68} 69}
69 70
70# Backup to NAS function. Much wow! 71# Backup to NAS function. Much wow!
diff --git a/.vimrc b/.vimrc
index 56ef2fb..d8febb7 100644
--- a/.vimrc
+++ b/.vimrc
@@ -33,4 +33,5 @@ let g:ale_virtualtext_cursor = 0
33let g:ale_set_quickfix = 1 33let g:ale_set_quickfix = 1
34let g:ctrlp_use_caching = 0 34let g:ctrlp_use_caching = 0
35let g:ctrlp_user_command = 'rg %s --files --color=never --glob ""' 35let g:ctrlp_user_command = 'rg %s --files --color=never --glob ""'
36 36let g:ale_linters = { 'cpp': ['clangd'], 'c': ['clangd'] }
37let g:ale_fixers = { 'cpp': ['clangd'], 'c': ['clangd'] }