https://github.com/hendricius/dotfiles
My dotrc files
https://github.com/hendricius/dotfiles
Last synced: about 2 months ago
JSON representation
My dotrc files
- Host: GitHub
- URL: https://github.com/hendricius/dotfiles
- Owner: hendricius
- Created: 2012-06-19T06:54:16.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2019-03-19T09:57:47.000Z (about 6 years ago)
- Last Synced: 2025-02-16T02:24:04.103Z (3 months ago)
- Language: Vim script
- Homepage:
- Size: 583 KB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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/zshRemember 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