Last active
August 29, 2015 14:02
-
-
Save gsavovski/fbae54427a67abf33098 to your computer and use it in GitHub Desktop.
Unite.vim Talk - VimChi - June 25th 2014 - Hashrocket
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Unite.vim | |
=============================================== | |
These are takeaways from the VimChi talk on Unite.vim. | |
This gist serves as easy copy paste resource when experimenting | |
with Unite, so that I can save you from taking notes in | |
the talk. | |
For more specific configuration with mapping and such, | |
you can checkout my .vimrc: github.com/gsavovski/VimplifY | |
Setting up color scheme | |
------------------------------- | |
:Unite colorscheme -auto-preview | |
Setting up airline scheme | |
------------------------------- | |
:Unite -winheight=30 -auto-preview -buffer-name=airline_themes airline_themes | |
Fuzzy Searching for files | |
------------------------------- | |
:Unite file | |
:Unite file_rec/async | |
:Unite -buffer-name=recent -winheight=10 file_mru | |
:Unite -buffer-name=buffers -winheight=10 buffer | |
Searching in Files | |
------------------------------- | |
Unite grep -no-quit -keep-focus | |
Bookmarking | |
------------------------------- | |
:UniteBookmarkAdd | |
:Unite bookmark | |
Outline filenames | |
------------------------------- | |
:Unite outline | |
Spell suggest | |
-------------------- | |
:Unite spell_sugg | |
Menus | |
-------------------- | |
:Unite menu |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment