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.
 
 
 

36 righe
552 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. " Markdown live preview
  18. " Plugin 'suan/vim-instant-markdown'
  19. " Asynchronous linting/fixing for Vim and Language Server Protocol (LSP)
  20. " integration - https://github.com/w0rp/ale
  21. Plugin 'w0rp/ale'
  22. " IntelliSense for Vim
  23. " Plugin 'neoclide/coc.nvim'
  24. call vundle#end()