Skip to content

Instantly share code, notes, and snippets.

@mark-d-holmberg
mark-d-holmberg / gVim _vimrc
Created August 2, 2011 22:35
gVim's .vimrc file for Windows.
nmap <C-V> "+gP
imap <C-V> <ESC><C-V>i
vmap <C-C> "+y
set nu
@mark-d-holmberg
mark-d-holmberg / .vimrc
Last active August 7, 2019 17:30
My .vimrc Config File for ViM
set nowrap
set nu
set cindent
set ts=2
set shiftwidth=2
set autowrite
hi Search ctermbg=6 guibg=LightBlue
set hlsearch
" set noexpandtab
set expandtab
@mark-d-holmberg
mark-d-holmberg / Makefile
Created March 9, 2011 18:56
convert a C++ std::string to the template type you specify
all:
g++ -Wall -g -o sstream-convert.x86 main.cpp
clean:
rm sstream-convert.x86