dotfiles

config files for my linux setup
git clone git://edryd.org/dotfiles
Log | Files | Refs | README

README.md (1007B)


      1 # dotfiles
      2 
      3 This is the place I use to store all my configuration files for programs such
      4 as Vim, Bash, Tmux, etc. These files are only designed to be used on Linux. I
      5 recommend you not to just copy whole files, but instead copy one line at a time
      6 that you understand and slowly build up a huge file. This way you have a setup
      7 that fits you best.
      8 
      9 ## installation
     10 
     11 Simply run `make install` to create all the appropriate symlinks, or run `make
     12 install-dotfiles` just to install the dotfiles to the home directory, and `make
     13 instal-sl` to install any suckless config header files
     14 
     15 Now we need to install the plug-ins which are found in `vimrc.bundles`. To do
     16 this I use Vundle, so enter this into the command line:
     17 
     18 	git clone https://github.com/gmarik/Vundle.vim vim/bundle/Vundle.vim
     19 
     20 After the repository has been cloned open the `vimrc.bundles` file. When inside
     21 enter this into Vim:
     22 
     23 	:VundleInstall
     24 
     25 After it has finished installing you can exit the Vundle window and the
     26 plug-ins should be installed.