mirror of
https://github.com/mentos1386/dotfiles.git
synced 2024-11-24 16:38:18 +00:00
feat: install starship, add vim plugins
This commit is contained in:
parent
8be24c73f1
commit
a3a17b3dcb
2 changed files with 9 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
|
||||
|
|
Loading…
Reference in a new issue