My personal Vim configuration.
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

33 lignes
490 B

  1. set nocompatible
  2. filetype off
  3. filetype plugin indent on
  4. " Activate syntax highlighting
  5. syntax on
  6. set nu
  7. set hls
  8. set si
  9. " Indentation
  10. set expandtab
  11. set shiftwidth=4
  12. set softtabstop=4
  13. " Vundle
  14. set rtp+=~/.vim/bundle/Vundle.vim
  15. call vundle#begin()
  16. Plugin 'VundleVim/Vundle.vim'
  17. " Asynchronous linting/fixing for Vim and Language Server Protocol (LSP)
  18. " integration - https://github.com/w0rp/ale
  19. Plugin 'w0rp/ale'
  20. " IntelliSense for Vim
  21. " Plugin 'neoclide/coc.nvim'
  22. call vundle#end()