diff options
author | Chris <[email protected]> | 2020-04-02 14:41:26 -0400 |
---|---|---|
committer | Chris <[email protected]> | 2020-04-02 14:41:26 -0400 |
commit | c24b07132d2dbe827d29f395a15370e24c6c5235 (patch) | |
tree | edc44b81c3b36ff9fe1bd2dbdc25bc43f8262f1c /utils/installer.sh | |
parent | 2df64a787b1cd437c7045a0ab748976776611238 (diff) |
auto push
Diffstat (limited to 'utils/installer.sh')
-rw-r--r-- | utils/installer.sh | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/utils/installer.sh b/utils/installer.sh index de8c093e..440a1de6 100644 --- a/utils/installer.sh +++ b/utils/installer.sh @@ -37,49 +37,6 @@ if ! [ -e "$INSTALL_DIR" ]; then echo "" fi -# write initial setting for .vimrc -echo "Please add the following settings for dein to the top of your vimrc (Vim) or init.vim (NeoVim) file:" -{ - echo "" - echo "" - echo "\"dein Scripts-----------------------------" - echo "if &compatible" - echo " set nocompatible \" Be iMproved" - echo "endif" - echo "" - echo "\" Required:" - echo "set runtimepath+=$INSTALL_DIR" - echo "" - echo "\" Required:" - echo "if dein#load_state('$PLUGIN_DIR')" - echo " call dein#begin('$PLUGIN_DIR')" - echo "" - echo " \" Let dein manage dein" - echo " \" Required:" - echo " call dein#add('$INSTALL_DIR')" - echo "" - echo " \" Add or remove your plugins here like this:" - echo " \"call dein#add('Shougo/neosnippet.vim')" - echo " \"call dein#add('Shougo/neosnippet-snippets')" - echo "" - echo " \" Required:" - echo " call dein#end()" - echo " call dein#save_state()" - echo "endif" - echo "" - echo "\" Required:" - echo "filetype plugin indent on" - echo "syntax enable" - echo "" - echo "\" If you want to install not installed plugins on startup." - echo "\"if dein#check_install()" - echo "\" call dein#install()" - echo "\"endif" - echo "" - echo "\"End dein Scripts-------------------------" - echo "" - echo "" -} echo "Done." |