feat: add some plugins, fix some spellings

This commit is contained in:
max_richter 2021-07-14 19:13:48 +02:00
parent 9ecffd949a
commit 1b30f4b7b1

View File

@ -19,18 +19,25 @@ Plug 'tpope/vim-sensible'
Plug 'kaicataldo/material.vim', { 'branch': 'main' } Plug 'kaicataldo/material.vim', { 'branch': 'main' }
Plug 'ryanoasis/vim-devicons' Plug 'ryanoasis/vim-devicons'
Plug 'preservim/nerdtree' Plug 'preservim/nerdtree'
" A status line to the bottom " 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 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'evanleck/vim-svelte', {'branch': 'main'}
Plug 'mattn/emmet-vim' Plug 'mattn/emmet-vim'
Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app && yarn install' } Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app && yarn install' }
" Display IMages in Vim " Display Images in Vim
Plug 'ashisha/image.vim' Plug 'ashisha/image.vim'
" Svelte support " Svelte support
Plug 'leafOfTree/vim-svelte-plugin' Plug 'leafOfTree/vim-svelte-plugin'
Plug 'evanleck/vim-svelte', {'branch': 'main'}
" Multi Cursor select " Multi Cursor select
Plug 'mg979/vim-visual-multi', {'branch': 'master'} Plug 'mg979/vim-visual-multi', {'branch': 'master'}
@ -38,6 +45,8 @@ Plug 'mg979/vim-visual-multi', {'branch': 'master'}
" Plug 'ctrlpvim/ctrlp.vim' " Plug 'ctrlpvim/ctrlp.vim'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } } Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'kristijanhusak/vim-dadbod-ui'
" List ends here. Plugins become visible to Vim after this call. " List ends here. Plugins become visible to Vim after this call.
call plug#end() call plug#end()
@ -80,7 +89,6 @@ nmap <C-l> <C-w>l
nnoremap H gT nnoremap H gT
nnoremap L gt nnoremap L gt
autocmd WinEnter * call s:CloseIfOnlyNerdTreeLeft() autocmd WinEnter * call s:CloseIfOnlyNerdTreeLeft()
" Close all open buffers on entering a window if the only " Close all open buffers on entering a window if the only
@ -94,5 +102,3 @@ function! s:CloseIfOnlyNerdTreeLeft()
endif endif
endif endif
endfunction endfunction
" let g:python3_host_prog = expand('~/.pyenv/shims/python3.9')