-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugins.vim
More file actions
102 lines (75 loc) · 2.41 KB
/
Copy pathplugins.vim
File metadata and controls
102 lines (75 loc) · 2.41 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
call plug#begin('~/.vim/plugged')
"Plugin Section
"
"Themes
Plug 'catppuccin/nvim', {'as': 'catppuccin'}
Plug 'morhetz/gruvbox'
Plug 'rakr/vim-one'
Plug 'folke/tokyonight.nvim', { 'branch': 'main' }
" icons
Plug 'ryanoasis/vim-devicons'
"Tab
Plug 'preservim/nerdtree'
" This is for indent lines xd
" Bugs
"Plug 'yggdroot/indentline'
" comentarios
" para usar: <leader> c <space>
Plug 'preservim/nerdcommenter'
""""""""""dont recognize html files************
"resaltado de sintaxis para lenguajes de progra
"Plug 'sheerun/vim-polyglot'
"let g:polyglot_disabled = ['autoindent']
"Status bar
Plug 'maximbaz/lightline-ale'
Plug 'itchyny/lightline.vim'
" Typing
Plug 'jiangmiao/auto-pairs'
Plug 'tpope/vim-surround' " Rodear una palabra con ([{}]): S (ese mayuscula) [] (caracter que va a rodear)
" autocomplete
Plug 'SirVer/ultisnips'
" Snippets are separated from the engine. Add this if you want them:
Plug 'honza/vim-snippets'
"Plug 'mlaursen/vim-react-snippets'
Plug 'neoclide/coc.nvim' , {'branch': 'release'}
"git
Plug 'mhinz/vim-signify'
" Buscar palabras y moverse a ellas
" para usar: s caracter
Plug 'easymotion/vim-easymotion'
" Colors for the hexadecimal format
Plug 'norcalli/nvim-colorizer.lua'
" Colors in paratheses
"Plug 'junegunn/rainbow_parentheses.vim'
"let g:rainbow#max_level = 16
"let g:rainbow#pairs = [['(', ')'], ['[', ']'], ['{', '}']]
"augroup rainbow_lisp
"autocmd!
"autocmd FileType javascript,lisp,clojure,scheme RainbowParentheses
"augroup END
" Auto rename tag
Plug 'andrewradev/tagalong.vim'
" prettier
" post install (yarn install | npm install) then load plugin only for editing supported files
"Plug 'prettier/vim-prettier', {
"\ 'do': 'yarn install --frozen-lockfile --production',
"\ 'for': ['javascript', 'typescript', 'css', 'less', 'scss', 'json', 'graphql', 'markdown', 'vue', 'svelte', 'yaml', 'html'] }
Plug 'junegunn/fzf.vim'
Plug 'junegunn/fzf', { 'do': { -> fzf#install() } }
" Github copilot
Plug 'github/copilot.vim'
" Write faster html code
" add this line to your .vimrc file
Plug 'mattn/emmet-vim'
Plug 'nvim-treesitter/nvim-treesitter', {'do': ':TSUpdate'}
" Markdown preview
Plug 'iamcco/markdown-preview.nvim', { 'do': 'cd app && npx --yes yarn install' }
" 'eandrju/cellular-automaton.nvim'
Plug 'eandrju/cellular-automaton.nvim'
" tmux
Plug 'christoomey/vim-tmux-navigator'
" for prettier
Plug 'sbdchd/neoformat'
" Astro
Plug 'wuelnerdotexe/vim-astro'
call plug#end()