Skip to content

Instantly share code, notes, and snippets.

View smyrman's full-sized avatar

Sindre Røkenes Myren smyrman

View GitHub Profile
@smyrman
smyrman / .lvimrc (Go project)
Last active October 22, 2015 13:47
vimrc file of Sindre Myren
" Set default max line with for all filetypes to 120.
set noexpandtab sw=8 sts=8 ts=8 tw=120
" Set max line width for Git commit to 79.
if &filetype == 'gitcommit'
set tw=79
endif
@dfeeney
dfeeney / settings.py
Created March 28, 2011 03:30
Working django-cms settings with django 1.3 staticfiles
# -*- coding: utf-8 -*-
import os
gettext = lambda s: s
PROJECT_DIR = os.path.abspath(os.path.dirname(__file__))
DEBUG = True
TEMPLATE_DEBUG = DEBUG