Compare commits

...

6 Commits

Author SHA1 Message Date
Rob Muhlestein f4240010a8 add nvm BULLSHIT 1 month ago
Rob Muhlestein 60edf698fe fix path for shellcheck 1 month ago
Rob Muhlestein 86adeca784 vim updates for asciidoc, etc. 1 month ago
Rob Muhlestein 27ec794814 fix countweeks 1 month ago
Rob Muhlestein ce3db322ba add DOCKER_HOST back 1 month ago
Rob Muhlestein d699c6ff12 change to bash so clone function works 1 month ago

@ -79,7 +79,8 @@ export ANSIBLE_INVENTORY="$HOME/.config/ansible/inventory.yaml"
export ANSIBLE_LOAD_CALLBACK_PLUGINS=1
#export ANSIBLE_STDOUT_CALLBACK=json
#export DOCKER_HOST=unix:///run/user/$(id -u)/docker.sock
export DOCKER_HOST=unix:///run/user/$(id -u)/docker.sock
[[ -d /.vim/spell ]] && export VIMSPELL=("$HOME/.vim/spell/*.add")
@ -383,3 +384,9 @@ _source_if "$HOME/.bash_work"
_have terraform && complete -C /usr/bin/terraform terraform
_have terraform && complete -C /usr/bin/terraform tf
# ------------------------- NVM bullshit ahead ------------------------
# (keep as is or nvm idiotic installer will re-add to bashrc next time)
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion

@ -1,5 +1,4 @@
#!/bin/sh
#!/bin/bash
clone docker/docker-install
./install.sh
dockerd-rootless-setuptool.sh install

@ -5,7 +5,7 @@ weeks=0
while IFS= read -r line; do
echo "$line"
if [[ $line =~ \(([0-9]+)\ weeks?\) ]]; then
((weeks+=${BASH_REMATCH[1]}))
((weeks+=BASH_REMATCH[1]))
fi
done
echo

@ -1,2 +1,2 @@
#!/usr/bin/env bash
echo -e ${PATH//:/\\n}
echo -e "${PATH//:/\\n}"

@ -237,6 +237,7 @@ if filereadable(expand("~/.vim/autoload/plug.vim"))
Plug 'morhetz/gruvbox'
Plug 'fatih/vim-go', { 'do': ':GoInstallBinaries' }
Plug 'vim-pandoc/vim-pandoc'
Plug 'dahu/vim-asciidoc'
Plug 'rwxrob/vim-pandoc-syntax-simple'
Plug 'dense-analysis/ale'
call plug#end()
@ -325,6 +326,10 @@ map Y y$
" better command-line completion
set wildmenu
" better cursor movement
"set virtualedit=all
set wrap
" disable search highlighting with <C-L> when refreshing screen
nnoremap <C-L> :nohl<CR><C-L>

Loading…
Cancel
Save