Advertisement
Guest User

Untitled

a guest
Nov 17th, 2020
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 1.24 KB | None | 0 0
  1. "" ============================================================================
  2. "" Install plugins
  3. "" ============================================================================
  4.  
  5. call plug#begin('~/.nvim/plugged')
  6.  
  7. " Themes
  8. Plug 'sainnhe/sonokai'
  9. Plug 'sainnhe/gruvbox-material'
  10. Plug 'chriskempson/base16-vim'
  11. Plug 'lifepillar/vim-gruvbox8'
  12.  
  13. " Semantic language support
  14. Plug 'neoclide/coc.nvim', {'branch': 'release'}
  15.  
  16. " Syntactic language support
  17. Plug 'rust-lang/rust.vim'
  18. Plug 'nvim-treesitter/nvim-treesitter'
  19.  
  20. call plug#end()
  21.  
  22. "" ============================================================================
  23. "" Theme
  24. "" ============================================================================
  25.  
  26. if has('termguicolors')
  27.   set termguicolors
  28. endif
  29.  
  30. " The configuration options should be placed before `colorscheme sonokai`.
  31. let g:sonokai_style = 'shusia'
  32. let g:sonokai_enable_italic = 0
  33. let g:sonokai_disable_italic_comment = 1
  34.  
  35. colorscheme sonokai
  36.  
  37. "" ============================================================================
  38. "" Look
  39. "" ============================================================================
  40.  
  41. syntax enable
  42. filetype plugin indent on
  43. set number
  44. set relativenumber
  45. set colorcolumn=80
  46. set mouse=a
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement