My personal Vim configuration.
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 

33 righe
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()