Skip to content

Instantly share code, notes, and snippets.

View RandellBrianKnight's full-sized avatar

Randell Brian Knight RandellBrianKnight

View GitHub Profile
@RandellBrianKnight
RandellBrianKnight / markdown-comments.md
Created September 23, 2023 17:55 — forked from jonikarppinen/markdown-comments.md
How to comment out stuff in Markdown on GitHub?

Comments in GitHub flavour of Markdown

As answers to this Stack Overflow question reveal, using <!--- and ---> or <!-- and --> works (view source by clicking "Raw"):

@RandellBrianKnight
RandellBrianKnight / init.vim
Created March 26, 2021 17:36 — forked from matthewbdaly/init.vim
My NeoVim config
let g:polyglot_disabled = ['markdown']
call plug#begin()
" NERDTree
Plug 'scrooloose/nerdtree'
" Git integration
Plug 'tpope/vim-fugitive'
Plug 'airblade/vim-gitgutter'
@RandellBrianKnight
RandellBrianKnight / gist:959fe361cd07230618dc88dfec2231a0
Created August 4, 2018 21:16 — forked from amarraja/gist:3938304
Replace system notepad with notepad++
REM Replaces notepad.exe with notepad++. Here for reference since I can never find it
REM Taken from here: http://blogs.itramblings.com/post/2009/02/08/How-to-replace-notepadexe-on-Windows-Server-2008.aspx
@echo off
echo Create Backup copies of the original notepad.exe
copy C:\Windows\notepad.exe C:\Windows\notepad32.exe
copy C:\Windows\System32\notepad.exe C:\Windows\System32\notepad32.exe
copy C:\Windows\SysWOW64\notepad.exe C:\Windows\SysWOW64\notepad32.exe