1
Fork 0

Small latex snippet imrpovement

This commit is contained in:
Matei Adriel 2023-02-15 11:28:43 +01:00
parent 0ffda6f90d
commit d573e17a00
No known key found for this signature in database
4 changed files with 13 additions and 15 deletions

View file

@ -193,16 +193,6 @@
"description": "Create an aligned environment",
"body": ["\\begin{aligned}", "\t$0", "\\end{aligned}"]
},
"Text explanation in math mode": {
"prefix": "texpl",
"description": "Explain a step using text in math mode",
"body": "&& \\text{($1)}$0"
},
"Explanation in math mode": {
"prefix": "expl",
"description": "Explain a step in math mode",
"body": "&& ($1) $0"
},
"Let": {
"prefix": "let",
"description": "Let something equal something else",
@ -216,7 +206,7 @@
"Aligned display math": {
"prefix": "maligned",
"description": "Create an aligned display math environment",
"body": ["\\[", "\t\\begin{aligned}", "\t\t$0", "\t\\end{aligned}", "\\]"]
"body": ["\\begin{align}", "\t$0", "\\end{align}"]
},
"System of equations": {
"prefix": "eqsystem",

View file

@ -1,7 +1,14 @@
{ pkgs, ... }: {
imports = [ ./exa.nix ./bat.nix ./ssh.nix
./git.nix ./starship.nix ./direnv.nix
./fish ./tmux ];
imports = [
./exa.nix
./bat.nix
./ssh.nix
./git.nix
./starship.nix
./direnv.nix
./fish
./tmux
];
# Enable bash
programs.bash.enable = true;

View file

@ -1 +1 @@
/nix/store/f8zh6hv5f6d3nnm0wk6f3rkmfq6dnpg7-home-manager-files/.config/eww/eww.yuck
/nix/store/jfni99vrwsgh0i4i2kjiv953aa0gqp2m-home-manager-files/.config/eww/eww.yuck

View file

@ -18,6 +18,7 @@
# A few ad-hoc settings
hardware.opengl.enable = true;
programs.kdeconnect.enable = true;
# i18n.inputMethod.enabled = "uim";
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
system.stateVersion = "22.11";