-
Notifications
You must be signed in to change notification settings - Fork 1
/
init.vim
221 lines (174 loc) · 6.42 KB
/
init.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
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
call plug#begin(stdpath('data'))
" Plugin para buscar entre archivos
Plug 'nvim-lua/plenary.nvim'
Plug 'nvim-telescope/telescope.nvim'
" Para navegar en el código
Plug 'https://github.com/preservim/tagbar'
" CSS Colores
Plug 'https://github.com/ap/vim-css-color'
" Multiples cursores
Plug 'terryma/vim-multiple-cursors'
" Barra inferior
Plug 'vim-airline/vim-airline'
" Iconos
Plug 'ryanoasis/vim-devicons'
" Plugin para poner números a la izquierda del código
Plug 'myusuf3/numbers.vim'
" Plugin para copilot
" Plug 'github/copilot.vim'
" Se comento github copilot tras el atraso de mi licencia
" Para TabNine
Plug 'codota/tabnine-nvim', { 'do': './dl_binaries.sh' }
" Autocompletado
Plug 'neoclide/coc.nvim', {'branch': 'release'}
" NerdTree
" Ctrl+w es para cambiar de ventanta (splits)
Plug 'preservim/nerdtree'
" Tema oscuro tender
Plug 'jacoborus/tender.vim'
" Pestañas por cada archivo abierto
Plug 'mkitt/tabline.vim'
" Terminal integrada
" Ejemplo de uso:
" :T <comandos>
Plug 'kassio/neoterm'
" Abrir dos archivos y hacer split
" Ejemplo de uso:
" :SplitOpen filename
Plug 'mandlm/vim-split-open'
" Terminal flotante
" Ejemplo de uso:
" :FloatermNew
" Esconder la termina flotante
" :FloatermToggle
" Cambiar de terminal
" FloatermNext ó FloatermPrev
Plug 'voldikss/vim-floaterm'
" Este plugin es para cerrar automaticamente llaves, parentesis, etc
Plug 'm4xshen/autoclose.nvim'
call plug#end()
" Iniciar nerdtree cuando se abra neovim
autocmd VimEnter * NERDTree
" Toggle NerdTree
nmap <F6> :NERDTreeToggle<CR>
" Actualizar nerdtree despues de crea un archivo
nmap <F5> :NERDTreeRefreshRoot<CR>
" Ver archivos ocultos
let NERDTreeShowHidden=1
" Establecer tema de papaya
" If you have vim >=8.0 or Neovim >= 0.1.5
if (has("termguicolors"))
set termguicolors
endif
" For Neovim 0.1.3 and 0.1.4
let $NVIM_TUI_ENABLE_TRUE_COLOR=1
" Theme
syntax enable
colorscheme tender
" Agregar que la terminal flotante se oculte con ESPACIO t f
nmap <space>tf :FloatermToggle<CR>
" Agregar cambio de la terminal anterior con ESPACIO t p
nmap <space>tp :FloatermPrevious<CR>
" Agregar cambio de la terminal siguiente con ESPACIO t n
nmap <space>tn :FloatermNext<CR>
" Usar TagBar
nmap <F12> :TagbarToggle<CR>
" Añadir codificación utf8
set encoding=utf-8
" Insertar caracteres que no estan en el teclado
inoremap <C-.> >
inoremap <C-,> <
inoremap <C-/> \
inoremap <C-|> `
syntax on
" Spaces & Tabs {{{
set tabstop=4 " number of visual spaces per TAB
set softtabstop=4 " number of spaces in tab when editing
set shiftwidth=4 " number of spaces to use for autoindent
set expandtab " tabs are space
set autoindent
set copyindent " copy indent from the previous line
" }}} Spaces & Tabs
" Folding {{{
set foldenable
set foldlevelstart=10 " default folding level when buffer is opened
set foldnestmax=10 " maximum nested fold
set foldmethod=syntax " fold based on indentation
" }}} Folding
" Copiar y pegar
vnoremap <silent> y y`]
vnoremap <silent> p p`]
nnoremap <silent> p p`]
vmap <silent> <C-c> "+y
nmap <silent> <C-c> "+yy
vmap <silent> <C-v> "+p
imap <silent> <C-v> <Esc>"+pa
" *******************************************************************************************************************************
" Configurando Autocompletado
" *******************************************************************************************************************************
" Importar configuración de Autocompletado
source autocompletado-coc.vim
" use <tab> for trigger completion and navigate to the next complete item
function! CheckBackspace() abort
let col = col('.') - 1
return !col || getline('.')[col - 1] =~# '\s'
endfunction
inoremap <silent><expr> <Tab>
\ coc#pum#visible() ? coc#pum#next(1) :
\ CheckBackspace() ? "\<Tab>" :
\ coc#refresh()
inoremap <expr> <cr> coc#pum#visible() ? coc#pum#confirm() : "\<CR>"
inoremap <silent><expr> <cr> coc#pum#visible() ? coc#_select_confirm() : "\<C-g>u\<CR>"
inoremap <silent><expr> <cr> coc#pum#visible() ? coc#_select_confirm() : "\<C-g>u\<CR>\<c-r>=coc#on_enter()\<CR>"
inoremap <silent><expr> <cr> coc#pum#visible() && coc#pum#info()['index'] != -1 ? coc#pum#confirm() : "\<C-g>u\<CR>"
" use <c-space>for trigger completion
inoremap <silent><expr> <c-space> coc#refresh()
" Use <C-@> on vim
inoremap <silent><expr> <c-@> coc#refresh()
inoremap <expr> <Tab> coc#pum#visible() ? coc#pum#next(1) : "\<Tab>"
inoremap <expr> <S-Tab> coc#pum#visible() ? coc#pum#prev(1) : "\<S-Tab>"
" *******************************************************************************************************************************
" *******************************************************************************************************************************
" *******************************************************************************************************************************
" Configurar Ctrl+z
nnoremap <C-z> :u<CR>
inoremap <C-z> <C-o>:u<CR>
" Configurando colores al NERDTree
set encoding=UTF-8
let g:airline_powerline_fonts = 1
" Configurar scroll del mouse
set mouse=a
" Quitar lo de cortar texto
set nowrap
" Buscar archivos usando Telescope
nnoremap <space>ff <cmd>Telescope find_files hidden=true<cr>
nnoremap <space>fg <cmd>Telescope live_grep<cr>
nnoremap <space>fb <cmd>Telescope buffers<cr>
nnoremap <space>fh <cmd>Telescope help_tags<cr>
" Ignorar Carpetas dónde no debería buscar telescope
lua << EOF
require('telescope').setup{
defaults = {
file_ignore_patterns = { "node_modules", ".git", ".vendor" }
}
}
EOF
" Cambiando colores de la terminal
source colores.vim
" Configurar autoclose
" Configurar el autocompletado de las llaves, parentesis, etc
lua << EOF
local config = {
["("] = { escape = false, close = true, pair = "()"},
["["] = { escape = false, close = true, pair = "[]"},
["{"] = { escape = false, close = true, pair = "{}"},
[">"] = { escape = true, close = false, pair = "<>"},
[")"] = { escape = true, close = false, pair = "()"},
["]"] = { escape = true, close = false, pair = "[]"},
["}"] = { escape = true, close = false, pair = "{}"},
['"'] = { escape = true, close = true, pair = '""'},
["'"] = { escape = true, close = true, pair = "''"},
["`"] = { escape = true, close = true, pair = "``"},
}
require('autoclose').setup(config)
EOF