-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugins.vim
60 lines (60 loc) · 1.65 KB
/
plugins.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
call plug#begin('~/.config/nvim/autoload/plugged')
"Plug 'weirongxu/plantuml-previewer.vim'
"Plug 'tyru/open-browser.vim'
"Syntax Astro
Plug 'wuelnerdotexe/vim-astro'
Plug 'jackMort/ChatGPT.nvim'
" Dependencias de ChatGPT.vim
Plug 'nvim-lua/plenary.nvim'
Plug 'MunifTanjim/nui.nvim'
"
Plug 'github/copilot.vim'
Plug 'leafOfTree/vim-matchtag'
"Temas
Plug 'sainnhe/gruvbox-material'
Plug 'morhetz/gruvbox'
Plug 'folke/tokyonight.nvim', { 'branch': 'main' }
Plug 'dracula/vim'
Plug 'catppuccin/nvim', { 'as': 'catppuccin' }
""LSP
Plug 'williamboman/nvim-lsp-installer'
Plug 'neovim/nvim-lspconfig'
"Php
Plug 'StanAngeloff/php.vim'
"Which Keys
Plug 'folke/which-key.nvim'
Plug 'folke/trouble.nvim'
Plug 'nvim-tree/nvim-web-devicons'
Plug 'rcarriga/nvim-notify'
Plug 'folke/noice.nvim'
"Color Picke
Plug 'KabbAmine/vCoolor.vim'
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim'
Plug 'nvim-telescope/telescope-live-grep-args.nvim' , {'branch': 'master'}
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'neoclide/coc-prettier', {'do': 'yarn install --frozen-lockfile'}
"Emmet
Plug 'mattn/emmet-vim'
"Formatter
Plug 'mhartington/formatter.nvim'
"Syntax various languages
Plug 'sheerun/vim-polyglot'
"Additional for completion
Plug 'hrsh7th/vim-vsnip'
Plug 'hrsh7th/vim-vsnip-integ'
"Add comments
Plug 'tpope/vim-commentary'
"Closetag
Plug 'alvan/vim-closetag'
"IdentLine
Plug 'Yggdroot/indentLine'
"Explorer
Plug 'vim-airline/vim-airline'
Plug 'vim-airline/vim-airline-themes'
Plug 'nvim-tree/nvim-tree.lua'
" Plug 'preservim/nerdtree' |
" \ Plug 'Xuyuanp/nerdtree-git-plugin' |
" \ Plug 'ryanoasis/vim-devicons'
Plug 'othree/html5.vim'
call plug#end()