Last active
September 3, 2018 05:01
-
-
Save raucao/2a09903f43503979fecd124e0eded1bb to your computer and use it in GitHub Desktop.
Vim setup for TypeScript
This file contains hidden or 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
# For use with Pathogen and Syntastic | |
# Install typescript-vim for syntax highlighting | |
git clone https://github.com/leafgarland/typescript-vim.git ~/.vim/bundle/typescript-vim | |
# Install and compile procvim.vim | |
git clone https://github.com/Shougo/vimproc.vim.git ~/.vim/bundle/vimproc.vim | |
pushd ~/.vim/bundle/vimproc.vim | |
make | |
popd | |
# Install tsuquyomi for | |
# - Completion (omni-completion) | |
# - Navigate to the location where a symbol is defined. | |
# - Show location(s) where a symbol is referenced. | |
# - Display a list of syntax and semantics errors to Vim quickfix window. | |
git clone https://github.com/Quramy/tsuquyomi.git ~/.vim/bundle/tsuquyomi |
This file contains hidden or 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
let g:syntastic_typescript_checkers = ['tsuquyomi'] | |
let g:tsuquyomi_disable_quickfix = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment