From 1b30f4b7b1136b9242c1e7a9814bf0d52832595f Mon Sep 17 00:00:00 2001 From: Jim Richter Date: Wed, 14 Jul 2021 19:13:48 +0200 Subject: [PATCH] feat: add some plugins, fix some spellings --- configs/init.vim | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/configs/init.vim b/configs/init.vim index 2270023..296aa50 100644 --- a/configs/init.vim +++ b/configs/init.vim @@ -19,18 +19,25 @@ Plug 'tpope/vim-sensible' Plug 'kaicataldo/material.vim', { 'branch': 'main' } Plug 'ryanoasis/vim-devicons' Plug 'preservim/nerdtree' + " A status line to the bottom -Plug 'itchyny/lightline.vim' +" Plug 'itchyny/lightline.vim' +Plug 'vim-airline/vim-airline' + +" Asynchronous Lint Engine +Plug 'dense-analysis/ale' + +" Autocompletion engine Plug 'neoclide/coc.nvim', {'branch': 'release'} -Plug 'evanleck/vim-svelte', {'branch': 'main'} Plug 'mattn/emmet-vim' Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app && yarn install' } -" Display IMages in Vim +" Display Images in Vim Plug 'ashisha/image.vim' " Svelte support Plug 'leafOfTree/vim-svelte-plugin' +Plug 'evanleck/vim-svelte', {'branch': 'main'} " Multi Cursor select Plug 'mg979/vim-visual-multi', {'branch': 'master'} @@ -38,6 +45,8 @@ Plug 'mg979/vim-visual-multi', {'branch': 'master'} " Plug 'ctrlpvim/ctrlp.vim' Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } +Plug 'kristijanhusak/vim-dadbod-ui' + " List ends here. Plugins become visible to Vim after this call. call plug#end() @@ -80,7 +89,6 @@ nmap l nnoremap H gT nnoremap L gt - autocmd WinEnter * call s:CloseIfOnlyNerdTreeLeft() " Close all open buffers on entering a window if the only @@ -94,5 +102,3 @@ function! s:CloseIfOnlyNerdTreeLeft() endif endif endfunction - -" let g:python3_host_prog = expand('~/.pyenv/shims/python3.9')