Skip to content

Commit 32e0791

Browse files
author
Yu-Hung Lin
committed
new bundles + regex engine setting
1 parent 3348cb4 commit 32e0791

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,8 @@ visual mode. Press `Ctrl+n` in visual mode and a cursor will be added to the nex
9696
the current selection. Use `Ctrl+p` to remove the last cursor, `Ctrl+x` to remove the last
9797
cursor and skip to the next cursor location. Simple edit commands like `c` or `d` will work just
9898
fine, multiple key commands like `ciw` are not supported yet.
99-
99+
* [vim-blockle](https://github.com/jgdavey/vim-blockle) lets you change a `do..end` into a `{..}` by pressing `b` with the cursor on part of the block.
100+
* [vim-airline](https://github.com/bling/vim-airline) sets the status bar and makes it more configurable and useful by showing things like the current Git branch, etc.
100101

101102
## Clojure
102103

bundles.vimrc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,5 @@ Bundle 'scrooloose/syntastic'
2525
Bundle 'skalnik/vim-vroom'
2626
Bundle 'ZoomWin'
2727
Bundle 'terryma/vim-multiple-cursors'
28+
Bundle 'bling/vim-airline'
29+
Bundle 'jgdavey/vim-blockle'

default.vimrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ set nowb
4343
set ttyfast
4444
set ttyscroll=3
4545
set lazyredraw
46+
set re=1
4647

4748
" Highlight after 100 characters
4849
augroup vimrc_autocmds

0 commit comments

Comments
 (0)