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.
 
 
 

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