From ae00575edebd35a30a652ec93686ab8eb97ee700 Mon Sep 17 00:00:00 2001 From: Rostyslav Hnatyshyn Date: Fri, 20 Sep 2024 20:25:37 -0700 Subject: [PATCH] add alacritty settings --- .gitignore | 5 +++++ alacritty/alacritty.toml | 28 ++++++++++++++++++++++++++++ alacritty/my_theme.toml | 23 +++++++++++++++++++++++ 3 files changed, 56 insertions(+) create mode 100644 alacritty/alacritty.toml create mode 100644 alacritty/my_theme.toml diff --git a/.gitignore b/.gitignore index 3d37e9b..6a2ab14 100644 --- a/.gitignore +++ b/.gitignore @@ -46,5 +46,10 @@ flycheck_*.el # network security /network-security.data + +# nvim files nvim/env nvim/plugin + +# alacritty themes +alacritty/themes diff --git a/alacritty/alacritty.toml b/alacritty/alacritty.toml new file mode 100644 index 0000000..9c154b7 --- /dev/null +++ b/alacritty/alacritty.toml @@ -0,0 +1,28 @@ +live_config_reload = true + +import = [ + "~/.config/alacritty/my_theme.toml" +] + +[env] +TERM = "alacritty" + +[shell] +program = "/bin/zsh" + +[window] +padding = { x = 5, y = 5} +dynamic_padding = true +decorations = "None" +startup_mode = "Windowed" + + +[selection] +save_to_clipboard = true + +[font] +size = 14 +normal = { family = "Hack Nerd Font" } + +[cursor] +style = {shape = "underline", blinking = "Always"} diff --git a/alacritty/my_theme.toml b/alacritty/my_theme.toml new file mode 100644 index 0000000..8ca4024 --- /dev/null +++ b/alacritty/my_theme.toml @@ -0,0 +1,23 @@ +[colors.primary] +background = "#161616" +foreground = "#CCCCCC" + +[colors.normal] +black = "#000000" +red = "#d6181b" +green = "#6A9955" +yellow = "#e4d201" +blue = "#569cd6" +magenta = "#bc3fbc" +cyan = "#4EC9B0" +white = "#e5e5e5" + +[colors.bright] +black = "#666666" +red = "#ce9178" +green = "#b5cea8" +yellow = "#DCDCAA" +blue = "#9cdcfe" +magenta = "#d670d6" +cyan = "#9cdcfe" +white = "#e5e5e5"