React:
Vue:
React:
const isDev = process.env.NODE_ENV === "development"; | |
if (isDev) { | |
require("./proxy-setup"); | |
} |
template <int, typename> | |
struct List; | |
struct Nil { | |
template <int _NValue> | |
using Append = List<_NValue, Nil>; | |
}; | |
template <int _Value, typename _Next> | |
struct List { |
React:
Vue:
React:
# Download latest neovim release from GitHub releases and pipe it to tar to extract it to /usr | |
curl -sL https://github.com/neovim/neovim/releases/latest/download/nvim-linux-x86_64.tar.gz \ | |
| sudo tar -xzf - --strip-components=1 --overwrite -C /usr | |
{ | |
"name": "PaperColor Light", | |
"cursorColor": "#25C3DC", | |
"foreground": "#3c3c3b", | |
"background": "#eeeeee", | |
"black": "#2c2c2c", | |
"red": "#d7005f", | |
"green": "#718c00", | |
"yellow":"#ff8f01", | |
"blue": "#005f87", |
Note: I have moved this list to a proper repository. I'll leave this gist up, but it won't be updated. To submit an idea, open a PR on the repo.
Note that I have not tried all of these personally, and cannot and do not vouch for all of the tools listed here. In most cases, the descriptions here are copied directly from their code repos. Some may have been abandoned. Investigate before installing/using.
The ones I use regularly include: bat, dust, fd, fend, hyperfine, miniserve, ripgrep, just, cargo-audit and cargo-wipe.
Make your Arch fonts beautiful easily! This is what I do when I install Arch Linux to improve the fonts.
You may consider the following settings to improve your fonts for system-wide usage without installing a patched font library packages (eg. Infinality):
Install some fonts, for example:
sudo pacman -S ttf-dejavu ttf-liberation noto-fonts
let mapleader=" " | |
""" Plugins -------------------------------- | |
set surround | |
set multiple-cursors | |
set commentary | |
set argtextobj | |
set easymotion | |
set textobj-entire | |
set ReplaceWithRegister |
<template> | |
<div> | |
<!-- v-row now provides gutter adjustments and has 3 options available --> | |
<!-- v1.5 - <v-container grid-list-xl> to v2.0 - regular (nothing required) --> | |
<!-- v1.5 - <v-container grid-list-md> to v2.0 - <v-row dense> --> | |
<!-- v1.5 - <v-container> to v2.0 - <v-row no-gutters> --> | |
<!-- v1.5 --> | |
<v-container grid-list-xl> | |
<v-layout> |