Skip to content

Commit

Permalink
Make minor improvements and consistency changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alrra committed Oct 19, 2016
1 parent 8a60559 commit ee6d7b7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 15 deletions.
27 changes: 12 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
# [Cătălin](https://github.com/alrra)’s dotfiles

[![Build Status](https://travis-ci.org/alrra/dotfiles.svg?branch=master)](https://travis-ci.org/alrra/dotfiles)
# [Cătălin](https://github.com/alrra)’s dotfiles [![Build Status](https://travis-ci.org/alrra/dotfiles.svg?branch=master)](https://travis-ci.org/alrra/dotfiles)

These are the base dotfiles that I start with when I set up a
new environment. For more specific local needs I use the `.local`
Expand Down Expand Up @@ -131,26 +129,25 @@ requirements by using the following files:

#### `~/.bash.local`

If the `~/.bash.local` file exists, it will be automatically sourced
after all the other [`bash` related files](src/shell), thus, allowing
The `~/.bash.local` file it will be automatically sourced after
all the other [`bash` related files](src/shell), thus, allowing
its content to add to or overwrite the existing aliases, settings,
PATH, etc.

Here is a very simple example of a `~/.bash.local` file:

```bash

#!/bin/bash

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

# Set local aliases
# Set local aliases.

alias starwars="telnet towel.blinkenlights.nl"

# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

# Set PATH additions
# Set PATH additions.

PATH="$PATH:$HOME/projects/dotfiles/src/bin"

Expand All @@ -160,12 +157,12 @@ export PATH

#### `~/.gitconfig.local`

If the `~/.gitconfig.local` file exists, it will be automatically
included after the configurations from `~/.gitconfig`, thus, allowing
its content to overwrite or add to the existing `git` configurations.
The `~/.gitconfig.local` file it will be automatically included
after the configurations from `~/.gitconfig`, thus, allowing its
content to overwrite or add to the existing `git` configurations.

__Note:__ Use `~/.gitconfig.local` to store sensitive information such
as the `git` user credentials, e.g.:
__Note:__ Use `~/.gitconfig.local` to store sensitive information
such as the `git` user credentials, e.g.:

```bash
[commit]
Expand All @@ -185,8 +182,8 @@ as the `git` user credentials, e.g.:

#### `~/.vimrc.local`

If the `~/.vimrc.local` file exists, it will be automatically sourced
after `~/.vimrc`, thus, allowing its content to add or overwrite the
The `~/.vimrc.local` file it will be automatically sourced after
`~/.vimrc`, thus, allowing its content to add or overwrite the
settings from `~/.vimrc`.


Expand Down
2 changes: 2 additions & 0 deletions src/os/create_local_config_files.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ create_gitconfig_local() {
# gpgsign = true
[user]
name =
email =
# signingkey =" \
Expand Down

0 comments on commit ee6d7b7

Please sign in to comment.