Moving configs up a level since I copied them wrong the first time

This commit is contained in:
jared kling
2022-12-12 10:00:26 -06:00
parent bea9f33dfa
commit 5dd77933c3
17 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
call plug#begin('~/.local/share/nvim/plugged')
" Theme
Plug 'dracula/vim', { 'as': 'dracula' }
" pretty start page
Plug 'mhinz/vim-startify'
Plug 'ap/vim-css-color'
" Include Phpactor
Plug 'phpactor/phpactor' , {'do': 'composer install', 'for': 'php'}
" autocomplete
"Plug 'ncm2/ncm2'
Plug 'roxma/nvim-yarp'
Plug 'leafgarland/typescript-vim'
" enable ncm2 for all buffers
"autocmd BufEnter * call ncm2#enable_for_buffer()
" IMPORTANT: :help Ncm2PopupOpen for more information
"set completeopt=noinsert,menuone,noselect
" Php
Plug 'StanAngeloff/php.vim'
Plug 'prettier/plugin-php', { 'branch': 'main' }
Plug 'phpactor/ncm2-phpactor'
" Go
" Plug 'ncm2/ncm2-go'
Plug 'prettier/vim-prettier'
" Svelte
Plug 'othree/html5.vim'
Plug 'pangloss/vim-javascript'
Plug 'evanleck/vim-svelte', {'branch': 'main'}
" git
Plug 'tpope/vim-fugitive'
Plug 'airblade/vim-gitgutter'
Plug 'neoclide/coc.nvim', {'branch': 'release'}
" Explorer
Plug 'scrooloose/nerdtree'
Plug 'Xuyuanp/nerdtree-git-plugin'
" Nice footer
Plug 'itchyny/lightline.vim'
" Search
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
Plug 'junegunn/fzf.vim'
" Commenting
Plug 'tpope/vim-commentary'
call plug#end()
autocmd! bufwritepost plugins.vim source %