aboutsummaryrefslogtreecommitdiff
path: root/.config
diff options
context:
space:
mode:
authorAlec Goncharow <alec@goncharow.dev>2023-01-24 10:09:21 -0600
committerAlec Goncharow <alec@goncharow.dev>2023-01-24 10:09:21 -0600
commit47e76c9ba66260f1cebf74015a7c4a566a012364 (patch)
treee9693330f3d79725235a65f311586673dffd8fd5 /.config
parent37baec21f82da3087eb2993e360cb693633e668c (diff)
alacritty and nushell scripts dir
Diffstat (limited to '.config')
-rw-r--r--.config/alacritty/alacritty.yml24
-rwxr-xr-x.config/nushell/scripts/greet.nu4
2 files changed, 28 insertions, 0 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml
new file mode 100644
index 0000000..1b5feff
--- /dev/null
+++ b/.config/alacritty/alacritty.yml
@@ -0,0 +1,24 @@
+# Font configuration (changes require restart)
+font:
+ # The size to use.
+ size: 12
+ # The normal (roman) font face to use.
+ normal:
+ family: JetBrainsMono Nerd Font
+ # Style can be specified to pick a specific face.
+ style: Regular
+
+ # The bold font face
+ bold:
+ family: JetBrainsMono Nerd Font
+ # Style can be specified to pick a specific face.
+ # style: Bold
+
+ # The italic font face
+ italic:
+ family: JetBrainsMono Nerd Font
+ # ()
+ # Style can be specified to pick a specific face.
+ # style: Italic
+window:
+ opacity: 0.75
diff --git a/.config/nushell/scripts/greet.nu b/.config/nushell/scripts/greet.nu
new file mode 100755
index 0000000..9399fdd
--- /dev/null
+++ b/.config/nushell/scripts/greet.nu
@@ -0,0 +1,4 @@
+#! /bin/nu
+def greet [name] {
+ ['hello' $name]
+}