Skip to content

Instantly share code, notes, and snippets.

@ryanzyy
ryanzyy / conemu64-context-menu.bat
Last active August 29, 2015 14:00
Open Folder with ConEmu in Windows Context Menu
@echo off
SET conEmuPath=C:\Program Files\ConEmu\ConEmu64.exe
rem add it for folders
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with ConEmu64" /t REG_SZ /v "" /d "Open with ConEmu64" /f
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with ConEmu64" /t REG_EXPAND_SZ /v "Icon" /d "%conEmuPath%,0" /f
@reg add "HKEY_CLASSES_ROOT\Folder\shell\Open with ConEmu64\command" /t REG_SZ /v "" /d "%conEmuPath% /dir \"%%1\"" /f
@reg add "HKEY_CLASSES_ROOT\Directory\shell\Open with ConEmu64" /t REG_SZ /v "" /d "Open with ConEmu64" /f
@ryanzyy
ryanzyy / .vimrc
Last active March 27, 2020 10:06
vimrc
" ------ Plug ----- {{{
call plug#begin('~/.vim/plugged')
Plug 'tpope/vim-fugitive' " IDE - Git
Plug 'ludovicchabant/vim-gutentags' " IDE - Ctags
Plug 'dracula/vim', {'as': 'dracula'} " IDE - Color
Plug 'junegunn/fzf' " IDE - Directory
Plug 'junegunn/fzf.vim' " IDE - Directory
Plug 'scrooloose/nerdtree' " IDE - Directory
Plug 'mileszs/ack.vim' " IDE - Find