From a3a17b3dcb6dec2366cfe5f78341e854752bd57f Mon Sep 17 00:00:00 2001 From: Tine Jozelj Date: Wed, 24 Nov 2021 18:39:50 +0100 Subject: [PATCH] feat: install starship, add vim plugins --- install.sh | 6 ++++++ vim/vimrc | 3 +++ 2 files changed, 9 insertions(+) diff --git a/install.sh b/install.sh index c880811..fc3a4c2 100755 --- a/install.sh +++ b/install.sh @@ -18,6 +18,12 @@ workspace_link() { echo "== zplug" curl -sL --proto-redir -all,https https://raw.githubusercontent.com/zplug/installer/master/installer.zsh | zsh || true +echo "== starship" +if ! starship --help > /dev/null +then + sh -c "$(curl -fsSL https://starship.rs/install.sh)" +fi + echo "== Copying configuration files..." # GIT workspace_backup .gitconfig diff --git a/vim/vimrc b/vim/vimrc index bc68766..cc327aa 100644 --- a/vim/vimrc +++ b/vim/vimrc @@ -24,6 +24,7 @@ Plug 'Yggdroot/indentLine' " Git Plug 'tpope/vim-fugitive' Plug 'airblade/vim-gitgutter' +Plug 'tpope/vim-rhubarb' " Search/Files Plug 'preservim/nerdtree' Plug 'ctrlpvim/ctrlp.vim' @@ -49,6 +50,8 @@ let g:ale_linters_explicit = 1 " Code helpers Plug 'jiangmiao/auto-pairs' Plug 'neoclide/coc.nvim', {'branch': 'release'} +" Database +Plug 'tpope/vim-dadbod' call plug#end()