Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- "" ============================================================================
- "" Install plugins
- "" ============================================================================
- call plug#begin('~/.nvim/plugged')
- " Themes
- Plug 'sainnhe/sonokai'
- Plug 'sainnhe/gruvbox-material'
- Plug 'chriskempson/base16-vim'
- Plug 'lifepillar/vim-gruvbox8'
- " Semantic language support
- Plug 'neoclide/coc.nvim', {'branch': 'release'}
- " Syntactic language support
- Plug 'rust-lang/rust.vim'
- Plug 'nvim-treesitter/nvim-treesitter'
- call plug#end()
- "" ============================================================================
- "" Theme
- "" ============================================================================
- if has('termguicolors')
- set termguicolors
- endif
- " The configuration options should be placed before `colorscheme sonokai`.
- let g:sonokai_style = 'shusia'
- let g:sonokai_enable_italic = 0
- let g:sonokai_disable_italic_comment = 1
- colorscheme sonokai
- "" ============================================================================
- "" Look
- "" ============================================================================
- syntax enable
- filetype plugin indent on
- set number
- set relativenumber
- set colorcolumn=80
- set mouse=a
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement