diff --git a/alacritty.toml b/alacritty.toml index 16f8f9c..0925981 100644 --- a/alacritty.toml +++ b/alacritty.toml @@ -1,14 +1,24 @@ live_config_reload = false -[colors.bright] -black = "0x686868" -blue = "0x59C2FF" -cyan = "0x95E6CB" -green = "0xC2D94C" -magenta = "0xFFEE99" -red = "0xF07178" -white = "0xFFFFFF" -yellow = "0xFFB454" +[env] +TERM = "xterm-256color" + +[window.dimensions] +columns = 80 +lines = 24 + +[scrolling] +history = 100000 + +[font] +size = 10.0 + +[font.normal] +family = "JetBrains Mono NL" + +[colors.primary] +background = "0x0A0E14" +foreground = "0xB3B1AD" [colors.normal] black = "0x01060E" @@ -20,9 +30,15 @@ red = "0xEA6C73" white = "0xC7C7C7" yellow = "0xF9AF4F" -[colors.primary] -background = "0x0A0E14" -foreground = "0xB3B1AD" +[colors.bright] +black = "0x686868" +blue = "0x59C2FF" +cyan = "0x95E6CB" +green = "0xC2D94C" +magenta = "0xFFEE99" +red = "0xF07178" +white = "0xFFFFFF" +yellow = "0xFFB454" [cursor] thickness = 0.25 @@ -31,14 +47,8 @@ unfocused_hollow = false [cursor.style] shape = "Beam" -[env] -TERM = "xterm-256color" - -[font] -size = 10.0 - -[font.normal] -family = "JetBrains Mono NL" +[mouse] +hide_when_typing = true [[hints.enabled]] command = "xdg-open" @@ -52,13 +62,3 @@ mods = "Control" [[keyboard.bindings]] action = "ToggleFullscreen" key = "F11" - -[mouse] -hide_when_typing = true - -[scrolling] -history = 100000 - -[window.dimensions] -columns = 80 -lines = 24