David Blume commited on 2015-11-28 08:57:56
Showing 2 changed files, with 15 additions and 13 deletions.
| ... | ... |
@@ -38,19 +38,19 @@ See [config.dlma.com](http://config.dlma.com) for more. |
| 38 | 38 |
1. .vimrc |
| 39 | 39 |
2. An empty .vim_undo directory |
| 40 | 40 |
3. .vim with the following plugins: |
| 41 |
- 1. [pathogen](https://github.com/tpope/vim-pathogen). |
|
| 42 |
- 2. [vim-powerline](https://github.com/Lokaltog/vim-powerline). |
|
| 43 |
- 3. [bbye for :Bdelete](https://github.com/moll/vim-bbye). |
|
| 44 |
- 4. [nerdtree](https://github.com/scrooloose/nerdtree). |
|
| 45 |
- 5. [taglist](http://www.vim.org/scripts/script.php?script_id=273). |
|
| 46 |
- 6. [file-line](http://www.vim.org/scripts/script.php?script_id=2184). |
|
| 47 |
- 7. [visual-star-search](http://got-ravings.blogspot.com/2008/07/vim-pr0n-visual-search-mappings.html). |
|
| 41 |
+ 1. [pathogen](https://github.com/tpope/vim-pathogen), the Vim plugin manager. |
|
| 42 |
+ 2. [vim-powerline](https://github.com/Lokaltog/vim-powerline), for a better Vim statusline. |
|
| 43 |
+ 3. [bbye for :Bdelete](https://github.com/moll/vim-bbye), to delete buffers without affecting windows. |
|
| 44 |
+ 4. [nerdtree](https://github.com/scrooloose/nerdtree), a better filesystem tree-view explorer. |
|
| 45 |
+ 5. [taglist](http://www.vim.org/scripts/script.php?script_id=273), a ctags tree-view explorer. |
|
| 46 |
+ 6. [file-line](http://www.vim.org/scripts/script.php?script_id=2184), to open file:line as from a compiler error. |
|
| 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 | 49 |
3. .gitconfig (but it needs vimdiff and github settings.) |
| 50 | 50 |
|
| 51 | 51 |
#### What's not installed |
| 52 | 52 |
|
| 53 |
-1. Private or public keys, get those from the USB4 bioport in the back of your neck. |
|
| 53 |
+1. Private data like keys, get those from the USB4 bioport in the back of your neck. |
|
| 54 | 54 |
|
| 55 | 55 |
### Is it any good? |
| 56 | 56 |
|
| ... | ... |
@@ -23,11 +23,13 @@ fi |
| 23 | 23 |
|
| 24 | 24 |
echo Note: Your old dotfiles are backed up to $backup_dir |
| 25 | 25 |
|
| 26 |
-# Move new dot files in |
|
| 27 |
-mv .bashrc $HOME |
|
| 28 |
-mv .bash_profile $HOME |
|
| 29 |
-mv .gitconfig $HOME |
|
| 30 |
-mv .vim $HOME |
|
| 26 |
+# Move new dot files in. |
|
| 27 |
+# If you cloned the repo, consider making symbolic links instead, |
|
| 28 |
+# to more easily keep this home directory current by pulling updates. |
|
| 29 |
+cp .bashrc $HOME |
|
| 30 |
+cp .bash_profile $HOME |
|
| 31 |
+cp .gitconfig $HOME |
|
| 32 |
+cp -r .vim $HOME |
|
| 31 | 33 |
|
| 32 | 34 |
# Make a directory for vim undo |
| 33 | 35 |
if [ ! -d $HOME/.vim_undo ]; then |
| 34 | 36 |