nixos-dotfiles
nixos-dotfiles
https://git.tonybtw.com/nixos-dotfiles.git
git://git.tonybtw.com/nixos-dotfiles.git
Remove config/alacritty for subtree re-add
Diff
diff --git a/config/alacritty/alacritty.toml b/config/alacritty/alacritty.toml
deleted file mode 100644
index 0c8ac79..0000000
--- a/config/alacritty/alacritty.toml
+++ /dev/null
@@ -1,37 +0,0 @@
-[window]
-# opacity=0.9
-[window.padding]
-y = 6
-x = 6
-
-[font]
-# normal = { family = "JetBrainsMono Nerd Font Propo", style = "Regular" }
-normal = { family = "Iosevka Nerd Font Propo", style = "Regular" }
-# size = 20
-size = 14
-
-[colors.bright]
-black = "#444b6a"
-blue = "#7da6ff"
-cyan = "#0db9d7"
-green = "#b9f27c"
-magenta = "#bb9af7"
-red = "#ff7a93"
-white = "#acb0d0"
-yellow = "#ff9e64"
-
-
-[colors.primary]
-background = "#1a1b26"
-foreground = "#c0caf5"
-
-[colors.normal]
-black = "#15161e"
-red = "#f7768e"
-green = "#9ece6a"
-yellow = "#e0af68"
-blue = "#7aa2f7"
-magenta = "#bb9af7"
-cyan = "#7dcfff"
-white = "#a9b1d6"
-
diff --git a/config/alacritty/readme.org b/config/alacritty/readme.org
deleted file mode 100644
index 6921c5f..0000000
--- a/config/alacritty/readme.org
+++ /dev/null
@@ -1,44 +0,0 @@
-#+title: Alacritty Config
-#+AUTHOR: Tony
-
-* Introduction
-This is my literately defined alacritty.toml readme using
-my first emacs org mode file.
-
-* Font
-Here I will define my font to be JetBrains Mono
-#+begin_src toml :tangle alacritty.toml
-[font]
-normal = { family = "JetBrainsMono Nerd Font Mono", style = "Regular" }
-size = 20
-#+end_src
-
-* Colors
-Using a TokyoNight theme, I note why I like it here.
-
-#+BEGIN_SRC toml :tangle alacritty.toml
-[colors.primary]
-background = "#1a1b26"
-foreground = "#c0caf5"
-
-[colors.normal]
-black = "#15161e"
-red = "#f7768e"
-green = "#9ece6a"
-yellow = "#e0af68"
-blue = "#7aa2f7"
-magenta = "#bb9af7"
-cyan = "#7dcfff"
-white = "#a9b1d6"
-#+END_SRC
-
-* Terminal Stuff
-This is required to set the terminal to /bin/bash instead of /bin/zsh, and login automatically to bash.
-#+begin_src toml :tangle alacritty.toml
-[terminal]
-
-[terminal.shell]
-program = "/bin/bash"
-args = ["--login"]
-
-#+end_src