GitXplorerGitXplorer
A

dotfiles

public
4 stars
1 forks
5 issues

Commits

List of commits on branch master.
Unverified
a773241bab08f1ade05e115b03654713fed3fe40

added myip alias

AAJ-Acevedo committed 4 years ago
Unverified
16c45fe51b96e0cf63f87c42d41f0bbdb11eb639

Silenced bash deprecation warning...

AAJ-Acevedo committed 4 years ago
Unverified
bda24289264551fe13c8ca9c7034a0c3194cd8ca

updated ansible timeout settings

AAJ-Acevedo committed 4 years ago
Unverified
616d3ee478b2d4a3621cb8adbf0cb9f22c128a4b

Updated python alias for linux

AAJ-Acevedo committed 4 years ago
Unverified
8c98ba17f10f1932dd442ec0ebe795a4a7191648

Updated vimrc for copy/paste on Linux

AAJ-Acevedo committed 4 years ago
Unverified
079fa162420d042285ab6614190b88e4ce3ddda1

prepping for macOS 11

AAJ-Acevedo committed 4 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