Skip to content

Instantly share code, notes, and snippets.

# Configuration for Alacritty, the GPU enhanced terminal emulator.
# Any items in the `env` entry below will be added as
# environment variables. Some entries may override variables
# set by alacritty itself.
#env:
# TERM variable
#
# This value is used to set the `$TERM` environment variable for
# each instance of Alacritty. If it is not present, alacritty will
@the-xs
the-xs / .vimrc
Created January 15, 2020 03:28
conf
set number
let mapleader = ","
" This line enables the true color support.
let $NVIM_TUI_ENABLE_TRUE_COLOR=1
" Note, the above line is ignored in Neovim 0.1.5 above, use this line instead.
set termguicolors
@the-xs
the-xs / index.js
Created March 1, 2017 04:41
code-splitting vs tree-shaking
import React from 'react';
import ReactDom from 'react-dom';
import MuiThemeProvider from 'material-ui/styles/MuiThemeProvider';
import TextField from 'material-ui/TextField';
const App = () => (
<MuiThemeProvider>
<TextField hintText="my cool hint text" />
</MuiThemeProvider>
);