David Blume commited on 2015-12-04 00:40:33
Showing 2 changed files, with 2 additions and 3 deletions.
... | ... |
@@ -46,8 +46,7 @@ See [config.dlma.com](http://config.dlma.com) for more. |
46 | 46 |
6. [file-line](http://www.vim.org/scripts/script.php?script_id=2184), to open file:line as from a compiler error. |
47 | 47 |
7. [visual-star-search](http://got-ravings.blogspot.com/2008/07/vim-pr0n-visual-search-mappings.html), so * and # work in visual mode too. |
48 | 48 |
8. Assorted favorite colors like [desert](https://github.com/dblume/desert.vim). |
49 |
-3. .gitconfig (but it needs vimdiff and github settings.) |
|
50 |
-4. .gitignore |
|
49 |
+3. .gitconfig and .gitignore |
|
51 | 50 |
|
52 | 51 |
#### What's not installed |
53 | 52 |
|
... | ... |
@@ -2,7 +2,7 @@ |
2 | 2 |
set -eu -o pipefail # See: https://sipb.mit.edu/doc/safe-shell/ |
3 | 3 |
|
4 | 4 |
declare -r backup_dir=$HOME/backup_of_dotfiles_`date "+%Y-%m-%d"` |
5 |
-declare -a dotfiles=(".bashrc" ".bash_profile" ".gitconfig" ".gitignore") |
|
5 |
+declare -a dotfiles=(".bashrc" ".bash_profile" ".vimrc" ".gitconfig" ".gitignore") |
|
6 | 6 |
|
7 | 7 |
if [ ! -d $backup_dir ]; then |
8 | 8 |
mkdir -p $backup_dir |
9 | 9 |