dotfiles icon indicating copy to clipboard operation
dotfiles copied to clipboard

My config files (aka dotfiles)

.dotfiles

My config files (aka dotfiles), they might be useful for someone else.

Installation

cd $HOME
git clone [email protected]:peterhellberg/dotfiles.git .dotfiles
ln -s .dotfiles/.??* -t .
unlink .git

Vim

The Vim configuration require vim-plug to be installed.

curl -fLo ~/.vim/autoload/plug.vim --create-dirs \
    https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim

Software

clear scripts in /opt/local/bin

clear-go

#!/bin/sh

clear && go $*

clear-gotest

#!/bin/sh

clear && gotest $*

clear-go-run-imgcat

#!/bin/sh

clear && go run . && imgcat $*