Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nelstrom/dotfiles
My dotfiles. Mainly customisations for Vim and Bash.
https://github.com/nelstrom/dotfiles
Last synced: about 1 month ago
JSON representation
My dotfiles. Mainly customisations for Vim and Bash.
- Host: GitHub
- URL: https://github.com/nelstrom/dotfiles
- Owner: nelstrom
- Created: 2010-03-18T15:15:31.000Z (almost 15 years ago)
- Default Branch: master
- Last Pushed: 2017-05-04T09:54:41.000Z (almost 8 years ago)
- Last Synced: 2024-11-25T05:30:33.650Z (3 months ago)
- Language: Vim script
- Homepage:
- Size: 2.08 MB
- Stars: 469
- Watchers: 37
- Forks: 51
- Open Issues: 2
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
Installation
git clone git://github.com/nelstrom/dotfiles.git
Create required directories:
mkdir -p ~/.config/nvim
mkdir -p ~/tmpCreate symlinks:
ln -s ~/dotfiles/bashrc ~/.bashrc
ln -s ~/dotfiles/vimrc ~/.vimrc
ln -s ~/dotfiles/gvimrc ~/.gvimrc
ln -s ~/dotfiles/irbrc ~/.irbrc
ln -s ~/dotfiles/vim ~/.vim
ln -s ~/dotfiles/ctags ~/.ctags
ln -s ~/dotfiles/jshintrc ~/.jshintrc
ln -s ~/dotfiles/tmux.conf ~/.tmux.conf
ln -s ~/dotfiles/gitconfig ~/.gitconfig
ln -s ~/dotfiles/global-gitignore ~/.gitignore
ln -s ~/dotfiles/init.vim ~/.config/nvim/init.vim# VIM #
My preferences for Vim are stored in `dotfiles/vimrc` and `dotfiles/gvimrc`
respectively. All plugins and scripts are stored in the `dotfiles/vim`
directory.# RUBY #
My preferences for IRB customisations are stored in `dotfiles/irbrc`. To get
the most from these, you should install the [interactive_editor][i_editor] and
[awesome_print][ap] gems, by running:gem install interactive_editor awesome_print
[jsbun]: http://github.com/pangloss/vim-javascript.git
[ap]: http://github.com/michaeldv/awesome_print
[i_editor]: http://github.com/jberkel/interactive_editor