-
Notifications
You must be signed in to change notification settings - Fork 0
/
init.vim
41 lines (29 loc) · 960 Bytes
/
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
set number
set mouse=a
set showcmd
set encoding=utf-8
set showmatch
set relativenumber
call plug#begin('~/.local/share/nvim/plugged')
Plug 'davidhalter/jedi-vim'
Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
Plug 'zchee/deoplete-jedi'
Plug 'jiangmiao/auto-pairs'
Plug 'hachy/eva01.vim', { 'branch': 'main' }
Plug 'Yggdroot/indentLine'
Plug 'haya14busa/incsearch.vim'
call plug#end()
" Colores
colorscheme eva01
" Configuraciones
let g:deoplete#enable_at_startup = 1
autocmd InsertLeave,CompleteDone * if pumvisible() == 0 | pclose | endif
inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
let g:neomake_python_enabled_makers = ['pylint']
let g:indentLine_fileTypeExclude = ['text', 'sh', 'help', 'terminal']
let g:indentLine_bufNameExclude = ['NERD_tree.*', 'term:.*']
" Maps requeridos
map / <Plug>(incsearch-forward)
map ? <Plug>(incsearch-backward)
" Quitar resaltado luego de buscar
let g:incsearch#auto_nohlsearch = 1