This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> | |
); |