GitXplorerGitXplorer
A

dotfiles

public
4 stars
1 forks
5 issues

Commits

List of commits on branch master.
Verified
9bd1ae01998add129f124d523a8bc46b6df33673

Update bashrc for hombrew path

AAJ-Acevedo committed 10 months ago
Unverified
e34e1ce38ec160bf48283d454f13e1011c8c2df7

Set default git branch

AAJ-Acevedo committed 3 years ago
Unverified
626fcaeaf690b109a0ac206509810811133da023

Updated python 3.10.4

AAJ-Acevedo committed 3 years ago
Unverified
a5a84fe5ba35326167fdd41d843df89fda60cdee

Updated VIM pathogen.vim

AAJ-Acevedo committed 3 years ago
Unverified
8db5089fccd1f0c6c0511e72766cb02f0fcca9a3

So long TextMate... Hello VS Code

AAJ-Acevedo committed 3 years ago
Unverified
588c5d02c5649f4f74e12955ceb0e18ef281a0c5

Updated README and LICENSE files

AAJ-Acevedo committed 3 years ago

README

The README file for this repository.

AJ's dotfiles

These dotfiles are a set of configuration files for macOS and Linux, that make my life in front of the keyboard just a little bit easier.

dotfiles are like a programmer's toolbox.

I am using macOS Monterey 12.x and my preferred Linux distributions are Debian and Ubuntu 22.04.

For more information on dotfiles, checkout dotfiles.github.io

Installation

Run the following commands in your terminal. It will prompt you before it does anything destructive. Check out the Rakefile to see exactly what it does.

git clone git@github.com:AJ-Acevedo/dotfiles.git ~/.dotfiles
cd ~/.dotfiles
rake install

After the installation completes, open a new terminal window to see the changes take effect.

NOTE: There are additional installer scripts in the ~/.dotfiles/init directory that can be run as well.

Updating and adding VIM plugins

To update the VIM plug-ins, run the following commands from the .dotfiles root directory

mkdir -p ~/.vim/autoload ~/.vim/bundle && \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim

git submodule foreach git pull origin master

When adding new VIM plug-ins, be sure to add them as git submodules

git submodule add git@github.com:scrooloose/nerdtree.git

Features

  • Tab auto-completion for Git and Grunt JS
  • Custom list of git config aliases and configurations
  • Add a Git repo's branch name to the PS1 prompt with red, yellow, and green status indicators: 'user@hostname cwd (git_branch • )$ '
  • Matching TextMate and vim themes
  • vim customization

Note

All of the .dotfiles are symbolically linked from .dotfiles to the home directory via the Rakefile. Any of these files can also be manually linked using ln -s ~/.dotfiles/ansible.cfg ~/.ansible.cfg

Uninstall

To remove the dotfile configs, run the following commands.
Be certain to double check the contents of the files before removing them so you don't lose your custom settings.

unlink ~/.bash_profile  
unlink ~/.bashrc  
unlink ~/.gemrc  
unlink ~/.gitignore  
unlink ~/.irbrc  
unlink ~/.railsrc  
unlink ~/.vim  
unlink ~/.vimrc  
rm ~/.gitconfig  
rm -rf ~/.dotfiles  

Then open a new terminal window to see the changes take effect.

Feel free to clone, modify, share, and use these dotfiles as your own.

License

Copyright (C) 2013 - 2022 AJ Acevedo

Author

AJ Acevedo