Added vim-indent-guides, upgraded skwp-vim-rspec
This commit is contained in:
parent
10da9de4ff
commit
5423aaa052
3
.gitmodules
vendored
3
.gitmodules
vendored
@ -181,3 +181,6 @@
|
||||
[submodule "vim/bundle/skwp-vim-rspec"]
|
||||
path = vim/bundle/skwp-vim-rspec
|
||||
url = https://github.com/skwp/vim-rspec
|
||||
[submodule "vim/bundle/nathanaelkane-vim-indent-guides"]
|
||||
path = vim/bundle/nathanaelkane-vim-indent-guides
|
||||
url = https://github.com/nathanaelkane/vim-indent-guides
|
||||
|
@ -246,6 +246,7 @@ files contain key mappings as well (TODO: probably will move them out to skwp-ke
|
||||
|
||||
**Utility**
|
||||
|
||||
* \gi - toggle visual indentation guides
|
||||
* ,cf - Copy Filename of current file into system (not vi) paste buffer
|
||||
* ,cc - (Current command) copies the command under your cursor and executes it in vim. Great for testing single line changes to vimrc.
|
||||
* ,yw - yank a word from anywhere within the word (so you don't have to go to the beginning of it)
|
||||
@ -321,6 +322,7 @@ Included vim plugins
|
||||
* ruby-debug-ide - not quite working for me, but maybe it will for you. supposedly a graphical debugger you can step through
|
||||
* Gundo - visualize your undos - pretty amazing plugin. Hit ,u with my keymappings to trigger it, very user friendly
|
||||
* slime - use ctrl-c,ctrl-c to send text to a running irb/pry/console. To start the console, you must use screen with a named session: "screen -S [name] [cmd]", ex: "screen -S pry pry"
|
||||
* vim-indent-guides - use \gi to turn on visual indentation guides. off by default
|
||||
|
||||
**General enhancements that don't add new commands**
|
||||
|
||||
|
1
vim/bundle/nathanaelkane-vim-indent-guides
Submodule
1
vim/bundle/nathanaelkane-vim-indent-guides
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit f1c115ce5dba08968a0b4693aa601b0eb5bd4609
|
@ -1 +1 @@
|
||||
Subproject commit e9334d5742879a5b298845964c8c3c8db590144c
|
||||
Subproject commit cea66577a7d3329a0dcd5d57bd7a0bdd9029459d
|
3
vim/plugin/settings/vim-indent-guides.vim
Normal file
3
vim/plugin/settings/vim-indent-guides.vim
Normal file
@ -0,0 +1,3 @@
|
||||
let g:indent_guides_auto_colors = 1
|
||||
let g:indent_guides_start_level = 2
|
||||
let g:indent_guides_guide_size = 1
|
Loading…
Reference in New Issue
Block a user