diff --git a/dotfiles/.vimrc b/dotfiles/.vimrc index 98388770..fb8b1b88 100644 --- a/dotfiles/.vimrc +++ b/dotfiles/.vimrc @@ -1,38 +1,38 @@ call plug#begin() -Plug 'https://github.com/leafgarland/typescript-vim.git' -Plug 'https://github.com/altercation/vim-colors-solarized.git' -Plug 'https://github.com/vim-airline/vim-airline.git' -Plug 'https://github.com/itchyny/lightline.vim.git' -Plug 'https://github.com/pangloss/vim-javascript.git' -Plug 'https://github.com/mxw/vim-jsx.git' -Plug 'https://github.com/plasticboy/vim-markdown.git' -Plug 'https://github.com/ekalinin/dockerfile.vim.git' -Plug 'https://github.com/stanangeloff/php.vim.git' -Plug 'https://github.com/hdima/python-syntax.git' -Plug 'https://github.com/scrooloose/nerdtree.git' -Plug 'https://github.com/tpope/vim-fugitive.git' -Plug 'https://github.com/prettier/vim-prettier.git' -Plug 'https://github.com/tpope/vim-sensible.git' -Plug 'https://github.com/editorconfig/editorconfig-vim.git' -Plug 'https://github.com/airblade/vim-gitgutter.git' -Plug 'https://github.com/tpope/vim-surround.git' -Plug 'https://github.com/kristijanhusak/vim-carbon-now-sh.git' -Plug 'https://github.com/terryma/vim-multiple-cursors.git' -Plug 'https://github.com/dense-analysis/ale.git' -Plug 'https://github.com/junegunn/fzf.git' -Plug 'https://github.com/junegunn/fzf.vim.git' -Plug 'https://github.com/neoclide/coc.nvim.git', {'branch': 'release'} -Plug 'https://github.com/vim-syntastic/syntastic.git' -Plug 'https://github.com/ryanoasis/vim-devicons.git' -Plug 'https://github.com/nanotee/zoxide.vim.git' -Plug 'https://github.com/fatih/vim-go.git' -Plug 'https://github.com/ycm-core/YouCompleteMe.git' -Plug 'https://github.com/pearofducks/ansible-vim.git', {'do': './UltiSnips/generate.sh'} +Plug '~/.vim/plugged/typescript-vim' +Plug '~/.vim/plugged/vim-colors-solarized' +Plug '~/.vim/plugged/vim-airline' +Plug '~/.vim/plugged/lightline.vim' +Plug '~/.vim/plugged/vim-javascript' +Plug '~/.vim/plugged/vim-jsx' +Plug '~/.vim/plugged/vim-markdown' +Plug '~/.vim/plugged/dockerfile.vim' +Plug '~/.vim/plugged/php.vim' +Plug '~/.vim/plugged/python-syntax' +Plug '~/.vim/plugged/nerdtree' +Plug '~/.vim/plugged/vim-five' +Plug '~/.vim/plugged/vim-prettier' +Plug '~/.vim/plugged/vim-sensible' +Plug '~/.vim/plugged/editorconfig-vim' +Plug '~/.vim/plugged/vimgutter' +Plug '~/.vim/plugged/vim-surround' +Plug '~/.vim/plugged/vim-carbon-now-sh' +Plug '~/.vim/plugged/vim-multiple-cursors' +Plug '~/.vim/plugged/ale' +Plug '~/.vim/plugged/fzf' +Plug '~/.vim/plugged/fzf.vim' +Plug '~/.vim/plugged/coc.nvim' +Plug '~/.vim/plugged/syntastic' +Plug '~/.vim/plugged/vim-devicons' +Plug '~/.vim/plugged/zoxide.vim' +Plug '~/.vim/plugged/vim-go' +Plug '~/.vim/plugged/YouCompleteMe' +Plug '~/.vim/plugged/ansible-vim', {'do': './UltiSnips/generate.sh'} " Settings for plugin https://github.com/altercation/vim-colors-solarized.git syntax enable set background=dark -colorscheme themer +colorscheme betelgeuse " Settings for plugin https://github.com/neoclide/coc.nvim.git autocmd FileType json syntax match Comment +\/\/.\+$+ diff --git a/vim-plugins.txt b/vim-plugins.txt new file mode 100644 index 00000000..e1dcfb0b --- /dev/null +++ b/vim-plugins.txt @@ -0,0 +1,29 @@ +https://github.com/vim-airline/vim-airline.git +https://github.com/itchyny/lightline.vim.git +https://github.com/pangloss/vim-javascript.git +https://github.com/mxw/vim-jsx.git +https://github.com/plasticboy/vim-markdown.git +https://github.com/ekalinin/dockerfile.vim.git +https://github.com/stanangeloff/php.vim.git +https://github.com/hdima/python-syntax.git +https://github.com/scrooloose/nerdtree.git +https://github.com/tpope/vim-fugitive.git +https://github.com/prettier/vim-prettier.git +https://github.com/tpope/vim-sensible.git +https://github.com/editorconfig/editorconfig-vim.git +https://github.com/airblade/vim-gitgutter.git +https://github.com/tpope/vim-surround.git +https://github.com/kristijanhusak/vim-carbon-now-sh.git +https://github.com/terryma/vim-multiple-cursors.git +https://github.com/dense-analysis/ale.git +https://github.com/junegunn/fzf.git +https://github.com/junegunn/fzf.vim.git +https://github.com/neoclide/coc.nvim.git +https://github.com/vim-syntastic/syntastic.git +https://github.com/ryanoasis/vim-devicons.git +https://github.com/nanotee/zoxide.vim.git +https://github.com/fatih/vim-go.git +https://github.com/ycm-core/YouCompleteMe.git +https://github.com/pearofducks/ansible-vim.git +### REMOVE THIS NOTE +### cat temp.txt | while read LINE; do FOLDER="$(echo $LINE | sed 's/.*\/\(.*\).git/\1/')"; git subrepo clone $LINE ./dotfiles/.vim/plugged/$FOLDER; done