Skip to content

Instantly share code, notes, and snippets.

View MatthewMarkgraaff's full-sized avatar

Matthew Markgraaff MatthewMarkgraaff

View GitHub Profile
" Specify a directory for plugins
call plug#begin('~/.vim/plugged')
Plug 'neoclide/coc.nvim', {'branch': 'release'}
Plug 'scrooloose/nerdtree'
"Plug 'tsony-tsonev/nerdtree-git-plugin'
Plug 'Xuyuanp/nerdtree-git-plugin'
Plug 'tiagofumo/vim-nerdtree-syntax-highlight'
Plug 'ryanoasis/vim-devicons'
Plug 'airblade/vim-gitgutter'
const Koa = require('koa');
const staticKoa = new Koa();
const serve = require('koa-static');
const path = require('path');
staticKoa.use(serve(path.join(__dirname, "./client/public/"), {}));
module.exports = staticKoa;