Skip to content

Instantly share code, notes, and snippets.

View seperman's full-sized avatar
💭
Focusing on Information Retrieval, Search, Personalization and Data ETLs.

Sep Dehpour seperman

💭
Focusing on Information Retrieval, Search, Personalization and Data ETLs.
View GitHub Profile
@seperman
seperman / Default (OSX).sublime-keymap
Last active January 3, 2016 09:19
Sublime 2 Mac User Keyboards
[
{ "keys": ["super+/"], "command": "toggle_comment", "args": { "block": false } },
{ "keys": ["ctrl+super+/"], "command": "toggle_comment", "args": { "block": true } },
{ "keys": ["super+g"], "command": "find_next" },
{ "keys": ["super+shift+g"], "command": "find_prev" },
{ "keys": ["alt+super+i"], "command": "find_under" },
{ "keys": ["shift+alt+super+g"], "command": "find_under_prev" },
{ "keys": ["super+shift+up"], "command": "swap_line_up" },
{ "keys": ["super+shift+down"], "command": "swap_line_down" },
{ "keys": ["super+shift+f"], "command": "show_panel", "args": {"panel": "replace", "reverse": false} }
@seperman
seperman / .jshintrc
Last active January 7, 2016 07:13
jshint configs for sublime
{
// The plugin looks for a .jshintrc file in the same directory as the source
// file you're prettifying (or any directory above if it doesn't exist, or in
// your home folder if everything else fails) and uses those options along
// the default ones.
// Details: https://github.com/victorporof/Sublime-JSHint#using-your-own-jshintrc-options
// Example: https://github.com/jshint/jshint/blob/master/examples/.jshintrc
// Documentation: http://www.jshint.com/docs/options/
"browser": true,
@seperman
seperman / Flake8Lint.sublime-settings
Created February 8, 2016 22:02
PyFlake8 sublime settings
{
"live_mode": true,
// set live mode lint delay, in milliseconds
"live_mode_lint_delay": 1000,
"pep8_max_line_length": 120,
"ignore": ["D102","D100", "I100", "D300", "D204", "D211", "D400"],
}
@seperman
seperman / Markdown.sublime-settings
Last active April 14, 2016 05:49
Markdown.sublime-settings
// This goes to: AppData\Roaming\Sublime Text 3\Packages\User\Markdown (Standard).sublime-settings
// for markdown.
{
"color_scheme": "Packages/MarkdownEditing/MarkdownEditor-Dark.tmTheme",
"spell_check": true
}
@seperman
seperman / sublime-settings user windows
Last active May 25, 2016 22:32
sublime-settings user windows
{
"bold_folder_labels": true,
"color_scheme": "Packages/User/SublimeLinter/Monokai (SL).tmTheme",
"draw_white_space": "selection",
"folder_exclude_patterns":
[
".svn",
".git",
".hg",
"CVS"
@seperman
seperman / flake8
Created December 17, 2014 01:48
~/.config/flake8
[flake8]
max-line-length = 160
ignore = E202
@seperman
seperman / Default.sublime-theme
Last active June 14, 2016 18:25
Put this file in: ~/Library/Application Support/Sublime Text 3/Packages/User
[
{
"class": "sidebar_label",
"color": [0, 0, 0],
"font.bold": false,
"font.size": 13
},
{
"class": "tab_label",
"font.size": 12,
@seperman
seperman / ipdb.sublime-snippet
Last active July 8, 2016 23:55 — forked from jorgebastida/ipdb.sublime-snippet
Sublime text 2 ipdb snippet
<snippet>
<content><![CDATA[import ipdb; ipdb.set_trace()]]></content>
<tabTrigger>ipdb</tabTrigger>
<scope>source.python</scope>
<description>ipdb</description>
</snippet>
@seperman
seperman / ppdb.sublime-snippet
Last active August 9, 2016 22:38
Pytest pdb ppdb
<snippet>
<content><![CDATA[import pytest; pytest.set_trace()]]></content>
<tabTrigger>ppdb</tabTrigger>
<scope>source.python</scope>
<description>Pytest pdb</description>
</snippet>
<snippet>
<content><![CDATA[from pudb import set_trace; set_trace()]]></content>
<tabTrigger>pudb</tabTrigger>
<scope>source.python</scope>
<description>Pudb</description>
</snippet>