Last active
July 30, 2020 16:37
-
-
Save sdemjanenko/79b4f002cf6a8a9b0fb68acf47a4b6c7 to your computer and use it in GitHub Desktop.
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
call plug#begin('~/.vim/plugged') | |
Plug 'tpope/vim-fugitive' | |
Plug 'bogado/file-line' | |
Plug 'wincent/command-t' | |
Plug 'lifepillar/vim-solarized8' | |
Plug 'kshenoy/vim-signature' | |
Plug 'leafgarland/typescript-vim' | |
Plug 'pangloss/vim-javascript' | |
Plug 'mxw/vim-jsx' | |
Plug 'keith/swift.vim' | |
" Initialize plugin system | |
call plug#end() | |
if filereadable(expand('~/.vimrc.plugs.config')) | |
source ~/.vimrc.plugs.config | |
endif |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment