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.
 
 
 

40 lines
605 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. " Mouse integration
  14. set ttymouse=xterm2
  15. set mouse=a
  16. " Vundle
  17. set rtp+=~/.vim/bundle/Vundle.vim
  18. call vundle#begin()
  19. Plugin 'VundleVim/Vundle.vim'
  20. " Markdown live preview
  21. " Plugin 'suan/vim-instant-markdown'
  22. " Asynchronous linting/fixing for Vim and Language Server Protocol (LSP)
  23. " integration - https://github.com/w0rp/ale
  24. Plugin 'w0rp/ale'
  25. " IntelliSense for Vim
  26. " Plugin 'neoclide/coc.nvim'
  27. call vundle#end()