Advertisement
d1cor

.config/nvim/plugins.vim

Jan 13th, 2025
986
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.60 KB | None | 0 0
  1. call plug#begin('~/.local/share/nvim/plugged')
  2.  
  3.  
  4.  
  5. " autocompletado python
  6. Plug 'Shougo/deoplete.nvim', { 'do': ':UpdateRemotePlugins' }
  7. let g:deoplete#enable_at_startup = 0
  8. Plug 'zchee/deoplete-jedi'
  9. "ocultar el cuadro de ayuda al seleccionar una opción
  10. autocmd InsertLeave,CompleteDone * if pumvisible() == 0 | pclose | endif
  11. "uso de tab
  12. inoremap <expr><tab> pumvisible() ? "\<c-n>" : "\<tab>"
  13. "mostrar el cuadro de ayuda abajo
  14. set splitbelow
  15.  
  16.  
  17.  
  18. " vim-airline en la barra de estado
  19. Plug 'vim-airline/vim-airline'
  20. Plug 'vim-airline/vim-airline-themes'
  21.  
  22.  
  23. " comillas y corchetes automaticos
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement