Age | Commit message (Collapse) | Author |
|
For moving inside camelCased and under_scored words.
|
|
|
|
* Remap toggle to <leader>ts
* Set column size to 1
* Set colours of guides to blend better with the background and be less
distracting
|
|
|
|
Visually displays indentation so you can have an easier time seeing
where a block ends.
Like BBEdit's tab stops (kind of), but looks more like the Visual
Studio style (blech).
Going to be amazingly useful since my team enforces 2-space indentation
for all front-end code (WTF???!).
|
|
This setting wasn't working for me, particularly when using EasyGrep,
so I've decided to remove it.
|
|
|
|
When in Insert mode, the statusline background colour changes to green.
In all other modes, the default reversed colours are used.
This change only appears when the twilight256 colourscheme is set.
|
|
* Add backup directories using .gitkeep files
* .gitignore:
- ignore files in the three backup directories
- ensure that .gitkeep files are not ignored
|
|
Only ignore the projects/ dir in the repository root. Who knows? we
might have a projects/ directory somewhere else in here that we want
to hold on to.
|
|
Instead of dropping .swp etc. files all over the filesystem, put them
in the `~/.vim/backup/` directory.
Here we have three directories, one for each of backups, swap, and
undo.
|
|
* Create an augroup to house syntax highlighting settings
* Add an autocmd that highlights JSON files using JavaScript syntax
highlighting
|
|
Useful to know. I like having it in BBEdit for those cases when a file
is for whatever reason not UTF-8, so adding it in here.
|
|
So I don't have to keep typing '\c' all the time when I'm searching for
something. Also, `smartcase`, an option I just found out about, allows
us to have case sensitivity if we enter uppercase.
|
|
Gives us access to skip wrapped lines since we mapped the inverse
direction before and as such there was no way to do this. Consider
this a power user version of up and down. I think this mapping is
more intuitive.
|
|
<leader>/ now performs :nohlsearch
|
|
Ignore case by default when searching with EasyGrep.
|
|
|
|
To prevent them from showing untracked changes in git status.
See:
http://stackoverflow.com/questions/4343544/generating-tags-to-different-location-by-pathogen
|
|
* Pathogen
* Command-T
* NerdTree
* TabBar (disabled)
* commentary.vim
* PreserveNoEOL
* EasyGrep
|
|
.vimrc from today. Will be re-adding my plugins as git submodules.
|