Small latex snippet imrpovement
This commit is contained in:
parent
0ffda6f90d
commit
d573e17a00
|
@ -193,16 +193,6 @@
|
||||||
"description": "Create an aligned environment",
|
"description": "Create an aligned environment",
|
||||||
"body": ["\\begin{aligned}", "\t$0", "\\end{aligned}"]
|
"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": {
|
"Let": {
|
||||||
"prefix": "let",
|
"prefix": "let",
|
||||||
"description": "Let something equal something else",
|
"description": "Let something equal something else",
|
||||||
|
@ -216,7 +206,7 @@
|
||||||
"Aligned display math": {
|
"Aligned display math": {
|
||||||
"prefix": "maligned",
|
"prefix": "maligned",
|
||||||
"description": "Create an aligned display math environment",
|
"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": {
|
"System of equations": {
|
||||||
"prefix": "eqsystem",
|
"prefix": "eqsystem",
|
||||||
|
|
|
@ -1,7 +1,14 @@
|
||||||
{ pkgs, ... }: {
|
{ pkgs, ... }: {
|
||||||
imports = [ ./exa.nix ./bat.nix ./ssh.nix
|
imports = [
|
||||||
./git.nix ./starship.nix ./direnv.nix
|
./exa.nix
|
||||||
./fish ./tmux ];
|
./bat.nix
|
||||||
|
./ssh.nix
|
||||||
|
./git.nix
|
||||||
|
./starship.nix
|
||||||
|
./direnv.nix
|
||||||
|
./fish
|
||||||
|
./tmux
|
||||||
|
];
|
||||||
|
|
||||||
# Enable bash
|
# Enable bash
|
||||||
programs.bash.enable = true;
|
programs.bash.enable = true;
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
/nix/store/f8zh6hv5f6d3nnm0wk6f3rkmfq6dnpg7-home-manager-files/.config/eww/eww.yuck
|
/nix/store/jfni99vrwsgh0i4i2kjiv953aa0gqp2m-home-manager-files/.config/eww/eww.yuck
|
|
@ -18,6 +18,7 @@
|
||||||
# A few ad-hoc settings
|
# A few ad-hoc settings
|
||||||
hardware.opengl.enable = true;
|
hardware.opengl.enable = true;
|
||||||
programs.kdeconnect.enable = true;
|
programs.kdeconnect.enable = true;
|
||||||
|
# i18n.inputMethod.enabled = "uim";
|
||||||
|
|
||||||
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||||||
system.stateVersion = "22.11";
|
system.stateVersion = "22.11";
|
||||||
|
|
Loading…
Reference in a new issue