This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" This vimrc attempts to be nvim/vim agnostic, but it's a better experience in nvim. | |
" git-plug plugin manager ______________________________________________________ | |
" | |
if has('nvim') " we are nvim bl | |
call plug#begin(stdpath('data') . '/plugged') | |
if !exists('g:vscode') | |
Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
" Plug 'pangloss/vim-javascript' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
" git-plug plugin manager ______________________________________________________ | |
" | |
if has('nvim') " we are nvim bl | |
call plug#begin(stdpath('data') . '/plugged') | |
Plug 'neoclide/coc.nvim', {'branch': 'release'} | |
else " we are plain old vim |