My personal Vim configuration.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 

39 řádky
616 B

  1. set nocompatible
  2. filetype off
  3. filetype plugin indent on
  4. " Use blowfish2 algorithm for encryption (:X)
  5. set cm=blowfish2
  6. " Activate syntax highlighting
  7. syntax on
  8. set nu
  9. set hls
  10. set si
  11. " Indentation
  12. set expandtab
  13. set shiftwidth=4
  14. set softtabstop=4
  15. " Vundle
  16. set rtp+=~/.vim/bundle/Vundle.vim
  17. call vundle#begin()
  18. Plugin 'VundleVim/Vundle.vim'
  19. " Markdown live preview
  20. " Plugin 'suan/vim-instant-markdown'
  21. " Asynchronous linting/fixing for Vim and Language Server Protocol (LSP)
  22. " integration - https://github.com/w0rp/ale
  23. Plugin 'w0rp/ale'
  24. " IntelliSense for Vim
  25. " Plugin 'neoclide/coc.nvim'
  26. call vundle#end()