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.
 
 
 

27 righe
395 B

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