summaryrefslogtreecommitdiff
path: root/pack/ache/start/installPlugin.sh
diff options
context:
space:
mode:
Diffstat (limited to 'pack/ache/start/installPlugin.sh')
-rwxr-xr-xpack/ache/start/installPlugin.sh117
1 files changed, 0 insertions, 117 deletions
diff --git a/pack/ache/start/installPlugin.sh b/pack/ache/start/installPlugin.sh
deleted file mode 100755
index 56b0391..0000000
--- a/pack/ache/start/installPlugin.sh
+++ /dev/null
@@ -1,117 +0,0 @@
-#!/bin/bash
-
-# jellybeans.vim/,
-# A good color scheme
-git clone "https://github.com/nanotech/jellybeans.vim"
-
-# badwolf
-# The default color scheme
-git clone "https://github.com/sjl/badwolf"
-
-# vim-eighties
-#
-# A lot of color schemes
-git clone "https://github.com/lithammer/vim-eighties"
-
-
-# tabular/,
-#
-# Seriously, I can't use that
-git clone "https://github.com/godlygeek/tabular"
-
-# python-mode
-#
-git clone "https://github.com/python-mode/python-mode"
-
-# Deoplete // Completion for Language
-git clone "https://github.com/Shougo/deoplete.nvim"
-
-# Neosnippet, completion for snippets
-git clone "https://github.com/Shougo/neosnippet.vim"
-git clone "https://github.com/Shougo/neosnippet-snippets"
-
-
-# Vim node ? Usefull to navigate between node package
-# Through require and import
-# TODO: How to do that again ?!
-git clone "https://github.com/moll/vim-node"
-
-# Vim Java script
-git clone "https://github.com/pangloss/vim-javascript"
-
- # Syntax checker
-git clone "https://github.com/vim-syntastic/syntastic"
-
- # Colorizer
-git clone "https://github.com/lilydjwg/colorizer"
-
-# Lightspeed
-#
-# Use 's' and 'S' to jump anywhere @ lightspeed ⚡
-git clone "https://github.com/ggandor/lightspeed.nvim"
-
-
-# coc.nvim
-#
-# A very good code integrator for Vim
-git clone --branch release "https://github.com/neoclide/coc.nvim.git" --depth=1
-
-# ale
-#
-# Check for error and format. 👍
-git clone "https://github.com/dense-analysis/ale.git"
-
-# Hexmod
-#
-# `vim -b` and `:Hexmod` will use xxd to print a file in hexadecimal
-git clone "https://github.com/fidian/hexmode.git"
-
-
-# vim-svelte
-#
-# Colorise one file CSS, JS and HTML
-git clone "https://github.com/evanleck/vim-svelte"
-
-
-# vim-surround/
-#
-# Quick change a delimiter from inside using `cs"'`
-git clone "https://github.com/tpope/vim-surround"
-
-
-# vim-javascript/
-#
-# Here the ony benfice is indentation
-git clone "https://github.com/pangloss/vim-javascript"
-
-# vim-commentary/
-#
-# Quick comment using `gc` and `gcc`
-git clone "https://github.com/tpope/vim-commentary"
-
-
-# tagalon
-#
-# When you rename an HTML tag, it will rename the corresponding end/opening tag.
-git clone "https://github.com/AndrewRadev/tagalong.vim"
-
-# vim-closetag
-#
-# Automatically lose HTML tag
-git clone "https://github.com/alvan/vim-closetag"
-
-
-
-# vim-css3-syntax/
-git clone "https://github.com/hail2u/vim-css3-syntax"
-
-# vim-Grammalecte/
-git clone "https://github.com/dpelle/vim-Grammalecte"
-
-# Much simpler Rainbow Parenthses
-git clone "https://github.com/junegunn/rainbow_parentheses.vim"
-
-# Active it
-echo ":RainbowParentheses" >> ./rainbow_parentheses.vim/plugin/rainbow_parentheses.vim
-
-