Skip to content

Commit

Permalink
adding back modules and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
theClarkSell committed Jan 2, 2019
1 parent 44f2f9a commit cf168f6
Show file tree
Hide file tree
Showing 14 changed files with 65 additions and 39 deletions.
8 changes: 1 addition & 7 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,10 +1,4 @@
.DS_Store

# never include any vim working files
.swp


# excluding git submodules
vim/bundles
fonts/powerline
dotbot
.swp
1 change: 1 addition & 0 deletions dotbot
Submodule dotbot added at 847cb1
1 change: 1 addition & 0 deletions fonts/powerline
Submodule powerline added at e80e3e
4 changes: 3 additions & 1 deletion fonts/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ Manually Swap terminal and editor to Hack

### [Powerline Fonts](https://github.com/powerline/fonts) - already configured automatically

- `git submodule add https://github.com/powerline/fonts.git fonts/powerline`
```bash
git submodule add https://github.com/powerline/fonts.git fonts/powerline
```

### [FiraCode](https://github.com/tonsky/FiraCode)

Expand Down
4 changes: 2 additions & 2 deletions install.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
},
{
"shell": [
["git submodule update --init --recursive", "Installing submodules"],
["./fonts/powerline/install.sh", "Installing Powerline Fonts"]
["git submodule update --init --recursive", "updating submodules"],
["./fonts/powerline/install.sh", "installing Powerline Fonts"]
]
}
]
13 changes: 13 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,16 @@ My repo is setup using [dotbot](https://github.com/anishathalye/dotbot).

This repo has a folder for each respective area of dotfiles. In each you will find a readme
detailing the setup for that area.

## git submodules

```bash
git submodule add --force https://github.com/anishathalye/dotbot;
git submodule add --force https://github.com/powerline/fonts.git fonts/powerline;
git submodule add --force https://github.com/scrooloose/nerdtree.git vim/bundle/nerdtree;
git submodule add --force https://github.com/scrooloose/nerdcommenter.git vim/bundle/nerdcommenter;
git submodule add --force https://github.com/airblade/vim-gitgutter.git vim/bundle/vim-gitgutter;
git submodule add --force https://github.com/tpope/vim-repeat.git vim/bundle/vim-repeat;
git submodule add --force https://github.com/tpope/vim-surround.git vim/bundle/vim-surround;
git submodule add --force https://github.com/itchyny/lightline.vim.git vim/bundle/lightline;
```
1 change: 1 addition & 0 deletions vim/bundle/lightline
Submodule lightline added at a63a00
1 change: 1 addition & 0 deletions vim/bundle/nerdcommenter
Submodule nerdcommenter added at 607253
1 change: 1 addition & 0 deletions vim/bundle/nerdtree
Submodule nerdtree added at 281701
1 change: 1 addition & 0 deletions vim/bundle/vim-gitgutter
Submodule vim-gitgutter added at 5d1a0b
1 change: 1 addition & 0 deletions vim/bundle/vim-repeat
Submodule vim-repeat added at 7a6675
1 change: 1 addition & 0 deletions vim/bundle/vim-surround
Submodule vim-surround added at e49d6c
55 changes: 29 additions & 26 deletions vim/readme.md
Original file line number Diff line number Diff line change
@@ -1,40 +1,43 @@

# My Vim Setup

## Great Articles
* [Mike Coutermarsh's, Learn Vim in a Week](https://mikecoutermarsh.com/learning-vim-in-a-week/)
* [Vim Configuration From Scratch in 2016](http://marcgg.com/blog/2016/03/01/vimrc-example/)
* [Vim Cheat Sheets](http://www.glump.net/files/2012/08/vi-vim-cheat-sheet-and-tutorial.pdf)

- [Mike Coutermarsh's, Learn Vim in a Week](https://mikecoutermarsh.com/learning-vim-in-a-week/)
- [Vim Configuration From Scratch in 2016](http://marcgg.com/blog/2016/03/01/vimrc-example/)
- [Vim Cheat Sheets](http://www.glump.net/files/2012/08/vi-vim-cheat-sheet-and-tutorial.pdf)

## Places to learn more
* vimtutor
* http://vimcasts.org
* http://upcase.com/vim
* [Mastering the Vim Language](https://www.youtube.com/watch?v=wlR5gYd6um0)

- vimtutor
- http://vimcasts.org
- http://upcase.com/vim
- [Mastering the Vim Language](https://www.youtube.com/watch?v=wlR5gYd6um0)

## General Setup Notes

* syslink for your dotfiles
- syslink for your dotfiles

``` bash
```bash
ln -s ~/.vim/vimrc ~/.vimrc
```

* Remap capsLock to esd
* Speed up the key repeat - https://pqrs.org/osx/karabiner/
- Remap capsLock to esd
- Speed up the key repeat - https://pqrs.org/osx/karabiner/

```
default 500/83
new 400/25
```

## Theme

[Tomorrow by Chris Kempson](https://github.com/chriskempson/tomorrow-theme)

## Plugin Loader

[Pathogen](https://github.com/tpope/vim-pathogen)

``` bash
```bash
mkdir -p ~/.vim/autoload ~/.vim/bundle ; \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
```
Expand All @@ -43,21 +46,21 @@

My bundles are added as git submodules and loaded by Pathogen.

``` bash
```bash
git submodule add https://github.com/user/pluginname.git bundle/pluginname
```

### Current Bundles
* [NerdTree](https://github.com/scrooloose/nerdtree)
* `git submodule add https://github.com/scrooloose/nerdtree.git vim/bundle/nerdtree`
* [NerdCommenter](https://github.com/scrooloose/nerdcommenter)
* `git submodule add https://github.com/scrooloose/nerdcommenter.git vim/bundle/nerdcommenter`
* [Git Gutter](https://github.com/airblade/vim-gitgutter)
* `git submodule add https://github.com/airblade/vim-gitgutter.git vim/bundle/vim-gitgutter`
* [Vim-Repeat]()
* `git submodule add https://github.com/tpope/vim-repeat.git vim/bundle/vim-repeat`
* [Vim-Surround]()
* `git submodule add https://github.com/tpope/vim-surround.git vim/bundle/vim-surround`
* [LightLine]()
* `git submodule add https://github.com/itchyny/lightline.vim.git vim/bundle/lightline`

- [NerdTree](https://github.com/scrooloose/nerdtree)
- `git submodule add https://github.com/scrooloose/nerdtree.git vim/bundle/nerdtree`
- [NerdCommenter](https://github.com/scrooloose/nerdcommenter)
- `git submodule add https://github.com/scrooloose/nerdcommenter.git vim/bundle/nerdcommenter`
- [Git Gutter](https://github.com/airblade/vim-gitgutter)
- `git submodule add https://github.com/airblade/vim-gitgutter.git vim/bundle/vim-gitgutter`
- [Vim-Repeat]()
- `git submodule add https://github.com/tpope/vim-repeat.git vim/bundle/vim-repeat`
- [Vim-Surround]()
- `git submodule add https://github.com/tpope/vim-surround.git vim/bundle/vim-surround`
- [LightLine]()
- `git submodule add https://github.com/itchyny/lightline.vim.git vim/bundle/lightline`
12 changes: 9 additions & 3 deletions zsh/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,15 @@

Install ZSH, Zsh-Completions and Antigen

brew install zsh zsh-completions antigen
```bash
brew install zsh zsh-completions antigen
```

install [oh-my-zsh](https://github.com/robbyrussell/oh-my-zsh)

sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
```bash
sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
```

Docs

Expand All @@ -17,7 +21,9 @@ Docs

Managed with [antigen](https://github.com/zsh-users/antigen) and bundles already configured in `.antigenrc`. Was installed above with homebrew.

brew install antigen
```bash
brew install antigen
```

## Themes / Fonts

Expand Down

0 comments on commit cf168f6

Please sign in to comment.