diff --git a/.editorconfig b/.editorconfig index afb1fc7..ffabb0b 100644 --- a/.editorconfig +++ b/.editorconfig @@ -5,3 +5,5 @@ end_of_line = lf insert_final_newline = true trim_trailing_whitespace = true charset = utf-8 +indent_size = 4 +indent_style = space diff --git a/wezterm/linux/wezterm.lua b/wezterm/linux/wezterm.lua index edc48f7..57405f4 100644 --- a/wezterm/linux/wezterm.lua +++ b/wezterm/linux/wezterm.lua @@ -1,18 +1,18 @@ -local wezterm = require 'wezterm' +local wezterm = require("wezterm") local config = wezterm.config_builder() -config.font = wezterm.font 'JetBrainsMono Nerd Font' +config.font = wezterm.font("JetBrainsMono Nerd Font") --[[ config.default_prog = { "C:\\Users\\xfy\\AppData\\Local\\Microsoft\\WindowsApps\\pwsh.exe" } ]] -- ui --[[ config.initial_rows = 50 ]] --[[ config.initial_cols = 198 ]] config.window_padding = { - left = 0, - right = 0, - top = 0, - bottom = 0, + left = 0, + right = 0, + top = 0, + bottom = 0, } config.window_decorations = "NONE" config.window_background_opacity = 0.97