Irakli's Dotfiles
Prerequisites
In order to use Docker aliases (in .docker file) you will need to make sure you have a working Docker environment. On Mac OS-X you can easily get one by installing https://www.docker.com/docker-toolbox. If you fancy Parallels over Virtualbox, make sure to check out: http://kb.parallels.com/en/123356
Installation
-
Clone the repository:
git clone https://github.com/inadarei/dotfiles.git irakli-dotfiles
-
Edit your
~/.profile
,~/.bash_profile
or~/.bashrc
file and add the following:dotfiles_loc="$HOME/irakli-dotfiles" if [ -d $dotfiles_loc ]; then for file in $dotfiles_loc/.*; do filename=${file##*/} if [ -f $file -a $filename != '.vimrc' ]; then source "$file"; fi done fi
-
Install .vimrc:
- install https://github.com/VundleVim/Vundle.vim
- Link config file by running
ln -s ~/irakli-dotfiles/dot_vimrc ~/.vimrc
- Install required Vundle plugins by running
vim +PluginInstall +qall
- Log out and log back into the session
Examples
-
Using FFMPeg via Dockerized alias:
ffmpeg -i {input}.mov -vcodec h264 -acodec aac -strict -2 {output}.mp4