My personal Vim configuration.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

27 lines
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()