Based on: https://gist.github.com/kevin-smets/8568070
This gist outlines the steps needed to setup zsh, ohmyzsh and the powerlevel10k theme on Ubuntu, available for anyone to follow.
-
Setup required dependencies
# update packages sudo apt update
This file contains 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
// An implementation of https://css-tricks.com/the-cleanest-trick-for-autogrowing-textareas/ in React | |
import React, { useRef } from 'react' | |
const AutoGrowingTextArea = props => { | |
const grower = useRef(null); | |
return( | |
<div className="AutoGrowingTextArea" ref={grower}> | |
<textarea |