Skip to content

Instantly share code, notes, and snippets.

@NatWeiss
NatWeiss / .vimrc
Last active August 12, 2022 22:39
syntax enable
colorscheme xcode-dark
" attempt to fix issue
" :95;0c is already typed on starting vim (not nvim)
set t_u7=
set t_SH=
" no need to press shift to enter command mode
noremap ; :
@NatWeiss
NatWeiss / Default Dark.dvtcolortheme
Last active December 9, 2015 03:58
Xcode Default Dark Theme
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>DVTConsoleDebuggerInputTextColor</key>
<string>0 0 0 1</string>
<key>DVTConsoleDebuggerInputTextFont</key>
<string>Menlo-Bold - 11.0</string>
<key>DVTConsoleDebuggerOutputTextColor</key>
<string>0 0 0 1</string>
@NatWeiss
NatWeiss / .profile
Last active December 30, 2015 05:29
An OS X profile.
export PS1='\[\033[1;33m\]$PWD\n*\[\033[0;38m\] '
export EDITOR=/usr/bin/nano
export HISTSIZE=10485760
export HISTFILESIZE=10485760
# ls in color
export CLICOLOR=1
export LSCOLORS=CxFxCxDxBxegedabagacad
# make clean tarballs w/o ._* files
export COPYFILE_DISABLE=true
@NatWeiss
NatWeiss / .bashrc
Created October 24, 2013 07:41
A Debian .bashrc file with custom coloring.
# ~/.bashrc: executed by bash(1) for non-login shells.
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
# for examples
# If not running interactively, don't do anything
case $- in
*i*) ;;
*) return;;
esac
@NatWeiss
NatWeiss / .nanorc
Created October 24, 2013 06:35
A .nanorc file which automatically colors source code, scripts, diffs, etc.
#
# .nanorc
# colors: white, black, red, blue, green, yellow, magenta, cyan.
#
set autoindent
set historylog
set nohelp
set nowrap
set smooth
set tabsize 5