Skip to content

Instantly share code, notes, and snippets.

View Lyonsclay's full-sized avatar
🎯
Focusing

Lyonsclay Lyonsclay

🎯
Focusing
View GitHub Profile
@habamax
habamax / emacs-python-treesitter-eglot.org
Last active March 26, 2025 20:52
Setup Emacs for Python with Treesitter and Eglot

Emacs, Python, Treesitter and Eglot

Treesitter (“better”/faster syntax highlighting)

  1. Make sure you have Emacs with treesitter support:

    M-: (treesit-available-p) RET should return t

  2. Make sure you have installed python treesitter grammar
@erikthedeveloper
erikthedeveloper / ReactTransitionGroup-example.js
Last active November 16, 2017 13:46
Simple example showing how React's ReactTransitionGroup works (sort of)
import React, { PropTypes } from 'react';
import ReactTransitionGroup from 'react/lib/ReactTransitionGroup';
/**
* An Item... to Transition!
*/
const TransitionItem = React.createClass({
getInitialState() {
return {
opacity: 0.0,