Skip to content

Instantly share code, notes, and snippets.

@vinilneves
vinilneves / .vimrc
Last active December 8, 2022 18:38
" ----------------------------------------------------------------------
" | General Settings |
" ----------------------------------------------------------------------
set autochdir
set nocompatible " Don't make vim vi-compatibile
syntax on " Enable syntax highlighting
if has('autocmd')
#!/bin/bash
echo Killing all containers
for i in $( docker ps -q ) ; do
docker kill $i
done
echo Removing all containers
for i in $( docker ps -aq ) ; do
docker rm $i