Skip to content

Instantly share code, notes, and snippets.

@jcarlos
jcarlos / gist:919f95eb1aaf926b0af9d15c36b977e0
Created December 5, 2021 11:03
Karabiner RightOption FN for Lenovo Trackpoint II, adds dev symbols to home row and easy ' and "
{
"title": "Right OptionFN",
"rules": [
{
"description": "Right OptionFN: home row dev symbols",
"manipulators": [
{
"type": "basic",
"from": {
"key_code": "right_option",
@jcarlos
jcarlos / vimrc
Created February 2, 2016 01:52
Settings for vimrc, needs some refactoring to separate custom settings from default vim-bootstrap settings
"*****************************************************************************
"" NeoBundle core
"*****************************************************************************
if has('vim_starting')
set nocompatible " Be iMproved
" Required:
set runtimepath+=~/.nvim/bundle/neobundle.vim/
endif
@jcarlos
jcarlos / Python for programmers
Last active August 29, 2015 14:05
Sample file with different examples for each common programming feature
# Sample file with different examples for each common programming feature
# python principles - Zen of Python
import this
print('Hello word!') # printing
# math ops
2 + 2
2 * 3