legacy-dots

init.vim

549 B
 1call plug#begin('~/.config/nvim/plugged')
 2Plug 'neoclide/coc.nvim', {'branch': 'release'}
 3Plug 'kaicataldo/material.vim', { 'branch': 'main' }
 4Plug 'rust-lang/rust.vim'
 5Plug 'instant-markdown/vim-instant-markdown', {'for': 'markdown'}
 6Plug 'vim-airline/vim-airline'
 7Plug 'vim-airline/vim-airline-themes'
 8call plug#end()
 9filetype plugin indent on
10set termguicolors
11set number
12syntax enable
13let g:material_theme_style = 'darker'
14let g:airline#extensions#tabline#enabled = 1
15colorscheme material
16let g:instant_markdown_browser = "firefox --new-window"