diff dot_config/wezterm/wezterm.lua @ 673:e258ef0fb4cd

Add prettier config (#1) * Update .pre-commit-config.yaml * [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
author Zeger Van de Vannet <747627+zegervdv@users.noreply.github.com>
date Thu, 29 Sep 2022 23:03:11 +0200
parents a5fb80022655
children
line wrap: on
line diff
--- a/dot_config/wezterm/wezterm.lua	Thu Sep 29 22:32:44 2022 +0200
+++ b/dot_config/wezterm/wezterm.lua	Thu Sep 29 23:03:11 2022 +0200
@@ -7,57 +7,57 @@
 
   -- Color scheme
   colors = {
-    foreground = "#abb2bf",
-    background = "#282c34",
-    cursor_bg = "#eeeeee",
-    cursor_border = "#eeeeee",
+    foreground = '#abb2bf',
+    background = '#282c34',
+    cursor_bg = '#eeeeee',
+    cursor_border = '#eeeeee',
 
-    selection_bg = "#ffc24b",
+    selection_bg = '#ffc24b',
 
     ansi = {
-      "#393e48",
-      "#f43753",
-      "#c9d05c",
-      "#ffc24b",
-      "#b3deef",
-      "#c678dd",
-      "#73cef4",
-      "#eeeeee",
+      '#393e48',
+      '#f43753',
+      '#c9d05c',
+      '#ffc24b',
+      '#b3deef',
+      '#c678dd',
+      '#73cef4',
+      '#eeeeee',
     },
     brights = {
-      "#393e48",
-      "#f43753",
-      "#c9d05c",
-      "#ffc24b",
-      "#b3deef",
-      "#c678dd",
-      "#73cef4",
-      "#ffffff",
+      '#393e48',
+      '#f43753',
+      '#c9d05c',
+      '#ffc24b',
+      '#b3deef',
+      '#c678dd',
+      '#73cef4',
+      '#ffffff',
     },
 
     tab_bar = {
-      background = "#3a3f4b",
+      background = '#3a3f4b',
       active_tab = {
-        bg_color = "#61afef",
-        fg_color = "#282c34",
+        bg_color = '#61afef',
+        fg_color = '#282c34',
       },
       inactive_tab = {
-        bg_color = "#3a3f4b",
-        fg_color = "#abb2bf",
+        bg_color = '#3a3f4b',
+        fg_color = '#abb2bf',
       },
       inactive_tab_hover = {
-        bg_color = "#3a3f4b",
-        fg_color = "#abb2bf",
+        bg_color = '#3a3f4b',
+        fg_color = '#abb2bf',
         italic = false,
       },
       new_tab = {
-        bg_color = "#3a3f4b",
-        fg_color = "#abb2bf",
+        bg_color = '#3a3f4b',
+        fg_color = '#abb2bf',
         italic = false,
       },
       new_tab_hover = {
-        bg_color = "#3a3f4b",
-        fg_color = "#abb2bf",
+        bg_color = '#3a3f4b',
+        fg_color = '#abb2bf',
         italic = false,
       },
     },
@@ -70,14 +70,12 @@
   },
   -- Font settings
   font = wezterm.font_with_fallback {
-    {family="Fira Code Retina", weight = "Medium", italic=false},
-    {family="Iosevka Term Italic"},
+    { family = 'Fira Code Retina', weight = 'Medium', italic = false },
+    { family = 'Iosevka Term Italic' },
   },
   font_size = 9.0,
 }
 
-if localcfg_ok then
-   config.ssh_domains = localcfg.ssh_domains
-end
+if localcfg_ok then config.ssh_domains = localcfg.ssh_domains end
 
 return config