An open API service indexing awesome lists of open source software.

https://github.com/hendricius/dotfiles

My dotrc files
https://github.com/hendricius/dotfiles

Last synced: about 2 months ago
JSON representation

My dotrc files

Awesome Lists containing this project

README

        

# Personal dotfiles

My personal dotfiles I use between my systems. Perfect for sharing the same
editor/config on your servers/local machine. Contains my preferred ruby vim
plugins.

# Setup

Option 1: Copy paste the respective folders to your home folder.

Option 2: Use the install.sh script to get started fast. This will backup your
existing dotfiles and use mine instead.

# Make sure to have the following installed:
apt-get install git vim zsh ack-grep tmux curl ctags silversearcher-ag

# Download dotfiles
cd && git clone git://github.com/hendricius/dotfiles.git
cd ~/dotfiles/
# Init submodules for oh-my-zsh and VIM
git submodule init && git submodule update

# Run installation script that copies all files into the correct location
./install.sh

# Create a file that is automatically included where you can put ENV variables for your scripts.
cd
touch .app_config_vars

# Install rbenv and ruby build if you need it
git clone https://github.com/sstephenson/rbenv.git ~/.rbenv
git clone https://github.com/sstephenson/ruby-build.git ~/.rbenv/plugins/ruby-build

# Change shell to zsh
chsh -s /bin/zsh

Remember to restart your shell by either re-logging or reloading the shell by
typing
exec $SHELL

# Install VIM-Plugins
-> open up vim
# Issue the following command
:PluginInstall