Skip to content

Commit

Permalink
adds the ability to use a custom.vim / add README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
quentindecock committed May 2, 2012
1 parent 46eb5b9 commit c469506
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,2 +1,3 @@
.swp .swp
.netrwhist .netrwhist
custom.vim
13 changes: 12 additions & 1 deletion README.md
@@ -1,5 +1,7 @@
# Crowdtap dotfile config, created from scratch # Crowdtap dotfile config, created from scratch


Hamburger! A clean and lean dotfile profile is here.

![Hamburger](http://www.passportmagazine.com/blog/uploads/DeathbyHamburger.jpg) ![Hamburger](http://www.passportmagazine.com/blog/uploads/DeathbyHamburger.jpg)


## What's inside? ## What's inside?
Expand All @@ -15,7 +17,12 @@ See below for further details
3. specify the dotfiles you want to use in the `MANIFEST` file (by default everything is installed) 3. specify the dotfiles you want to use in the `MANIFEST` file (by default everything is installed)
4. run `rake install` 4. run `rake install`


## Vim config ## TMUX config

* The main mapping for TMUX is `ctrl + e`
* Checkout the config (`tmux.conf` file) quickly to get an idea of the essential mappings, it is easy to understand

## VIM config


### Plugins ### Plugins


Expand All @@ -34,6 +41,10 @@ See below for further details


* [Pathogen](https://github.com/tpope/vim-pathogen) - Runtime path management * [Pathogen](https://github.com/tpope/vim-pathogen) - Runtime path management


## Customization

Please put your custom setting in a `custom.vim` file at the root of the dotfile directory

## Credits ## Credits


I would like to thank these guys, this config was largely inspired by there work: I would like to thank these guys, this config was largely inspired by there work:
Expand Down
4 changes: 2 additions & 2 deletions tmux.conf
Expand Up @@ -5,9 +5,9 @@ set -g history-limit 20000
set-window-option -g mode-keys vi set-window-option -g mode-keys vi


# Use ctrl-a instead of ctrl-b # Use ctrl-a instead of ctrl-b
set -g prefix C-a set -g prefix C-e
unbind C-b unbind C-b
bind C-a send-prefix bind C-e send-prefix


unbind C-f unbind C-f
bind C-f command-prompt "switch-client -t %%" bind C-f command-prompt "switch-client -t %%"
Expand Down
8 changes: 8 additions & 0 deletions vimrc
Expand Up @@ -55,6 +55,14 @@ set directory=/tmp "sets the swap (.swp) file directory


set mouse=a " allow mouse scrolling set mouse=a " allow mouse scrolling


"
" Source external vim config files
"
if filereadable(expand("custom.vim"))
source custom.vim
endif


" "
" NERDTree " NERDTree
" "
Expand Down

0 comments on commit c469506

Please sign in to comment.