Inspired By:
https://github.com/neovim/neovim/wiki/Installing-Neovim#macos--os-x
import { BaseSyntheticEvent, useEffect, useState } from 'react' | |
interface Todo { | |
userId: number | |
id: number | |
title: string | |
completed: boolean | |
} | |
function Home() { |
package main | |
import ( | |
"github.com/gin-gonic/gin" | |
) | |
func main() { | |
router := gin.Default() | |
router.GET("/", func(c *gin.Context) { |
alias ll='ls -al' | |
alias ld='ls -alt' | |
alias c='code .' | |
alias ll='ls -al' | |
alias ld='ls -alt' | |
alias c='code .' | |
alias cd..='cd ..' | |
alias ..='cd ..' | |
alias ...='cd ../..' | |
alias cd!='cd !$' |
{ | |
// "_ a": { "prefix": "_ a", "body": [""], "description": "a" }, | |
// "_ b": { "prefix": "_ b", "body": [""], "description": "b" }, | |
// "_ c": { "prefix": "_ c", "body": [""], "description": "c" }, | |
// "_ d": { "prefix": "_ d", "body": [""], "description": "d" }, | |
// "_ e": { "prefix": "_ e", "body": [""], "description": "e" }, | |
// "_ f": { "prefix": "_ f", "body": [""], "description": "f" }, | |
// "_ g": { "prefix": "_ g", "body": [""], "description": "g" }, | |
// "_ h": { "prefix": "_ h", "body": [""], "description": "h" }, | |
// "_ i": { "prefix": "_ i", "body": [""], "description": "i" }, |
<!-- READ FIRST: https://babeljs.io/docs/en/babel-standalone --> | |
<!-- <script type="text/babel" src="https://unpkg.com/@babel/standalone/babel.min.js"></script> --> | |
<script src="https://unpkg.com/[email protected]/umd/react.development.js"></script> | |
<script src="https://unpkg.com/[email protected]/umd/react-dom.development.js"></script> |
Type | Emoji | code |
---|---|---|
feat | ✨ | :sparkles: |
fix | 🐛 | :bug: |
docs | 📚 | :books: |
style | 💎 | :gem: |
refactor | 🔨 | :hammer: |
perf | 🚀 | :rocket: |
test | 🚨 | :rotating_light: |
build | 📦 | :package: |
/* HEX */ | |
--black: #111; | |
--gray: #555; | |
--gray-dark: #1c1d21; | |
--gray-light: #888; | |
--white: #f7f7f7; | |
--red: #e94a50; | |
--green: #7dbb5c; | |
--blue: #4fb3db; |
:root { | |
--black: #111; | |
--gray: #555; | |
--gray-dark: #1c1d21; | |
--gray-light: #888; | |
--white: #f7f7f7; | |
--red: #e94a50; | |
--green: #7dbb5c; | |
--blue: #4fb3db; | |
--orange: #fe7c0d; |
root = true | |
[*] | |
charset = utf-8 | |
indent_style = space | |
indent_size = 2 | |
end_of_line = lf | |
insert_final_newline = false | |
trim_trailing_whitespace = true |