Skip to content

Instantly share code, notes, and snippets.

@calopez
calopez / Cask.el
Created October 5, 2015 23:50
cask file for my basic emacs config.
(source gnu)
(source melpa)
(depends-on "cask")
(depends-on "color-theme-sanityinc-tomorrow")
(depends-on "expand-region")
(depends-on "ace-jump-mode")
(depends-on "auto-complete")
(depends-on "flx-ido")
(depends-on "yasnippet")
@calopez
calopez / emacs.el
Created October 5, 2015 23:49
my basic emacs configuration
(require 'cask "~/.cask/cask.el")
(cask-initialize)
;; ------------------------------
;; my customizations
;; ------------------------------
(yas-global-mode t)
@calopez
calopez / .dotfiles
Created October 1, 2015 22:40 — forked from ericson-cepeda/.dotfiles
Dotfiles
Env config files.
# Mac OS X Lion introduced a new, iOS-like context menu when you press and hold a key
# that enables you to choose a character from a menu of options. If you are on Lion
# try it by pressing and holding down 'e' in any app that uses the default NSTextField
# for input.
#
# It's a nice feature and continues the blending of Mac OS X and iOS features. However,
# it's a nightmare to deal with in Sublime Text if you're running Vintage (Vim) mode,
# as it means you cannot press and hold h/j/k/l to move through your file. You have
# to repeatedly press the keys to navigate.
{
"auto_complete_commit_on_tab": true,
"caret_style": "solid",
"color_scheme": "Packages/Dayle Rees Color Schemes/legacy/FreshCut.tmTheme",
"enable_tab_scrolling": false,
"ensure_newline_at_eof_on_save": true,
"file_exclude_patterns":
[
"*.pyc",
"*.pyo",