Compare commits

..

No commits in common. 'f4240010a82609da352b203103ab548f213a4328' and 'd58d220a2fce3c7ce396a150a8711468f93a61fd' have entirely different histories.

@ -79,8 +79,7 @@ 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")
@ -384,9 +383,3 @@ _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,4 +1,5 @@
#!/bin/bash
#!/bin/sh
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,7 +237,6 @@ 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()
@ -326,10 +325,6 @@ 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