Compare commits

...

4 commits

Author SHA1 Message Date
6f3c548fbd feat: remove database, add blamer 2021-11-24 19:18:08 +01:00
440937ef01 fix: use --yes 2021-11-24 18:45:46 +01:00
7b9ffcad92 fix: use --yes 2021-11-24 18:44:55 +01:00
a3a17b3dcb feat: install starship, add vim plugins 2021-11-24 18:39:50 +01:00
2 changed files with 9 additions and 0 deletions

View file

@ -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)" -- --yes
fi
echo "== Copying configuration files..."
# GIT
workspace_backup .gitconfig

View file

@ -24,6 +24,9 @@ Plug 'Yggdroot/indentLine'
" Git
Plug 'tpope/vim-fugitive'
Plug 'airblade/vim-gitgutter'
Plug 'tpope/vim-rhubarb'
Plug 'APZelos/blamer.nvim'
let g:blamer_enabled = 1
" Search/Files
Plug 'preservim/nerdtree'
Plug 'ctrlpvim/ctrlp.vim'