From 2e16dd3c9c110f7e626f9ea5ee0c164809f6453c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alexander=20W=C3=BChr?= Date: Tue, 24 Sep 2024 08:11:29 +0200 Subject: [PATCH] Add wezterm and mise --- fish/config.fish | 6 +++++- install.conf.yaml | 4 ++++ wezterm/wezterm.lua | 10 ++++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 wezterm/wezterm.lua diff --git a/fish/config.fish b/fish/config.fish index 51156bf..65552bc 100644 --- a/fish/config.fish +++ b/fish/config.fish @@ -33,6 +33,10 @@ if test -r ~/.asdf/asdf.fish source ~/.asdf/asdf.fish end +if test -x "$(which mise)" + mise activate fish | source +end + if test -x "$(which starship)" starship init fish | source end @@ -43,4 +47,4 @@ end if test -x "$(which pueue)" pueue completions fish | source -end \ No newline at end of file +end diff --git a/install.conf.yaml b/install.conf.yaml index bb9ce93..4b8e28d 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -8,6 +8,7 @@ - ~/.config/fish - ~/.config/git - ~/.config/pacdef + - ~/.config/wezterm - ~/.config/yt-dlp - link: @@ -20,6 +21,9 @@ ~/.config/pacdef: path: pacdef/* glob: true + ~/.config/wezterm: + path: wezterm/* + glob: true ~/.config/yt-dlp: path: yt-dlp/* glob: true diff --git a/wezterm/wezterm.lua b/wezterm/wezterm.lua new file mode 100644 index 0000000..f248e9a --- /dev/null +++ b/wezterm/wezterm.lua @@ -0,0 +1,10 @@ +local wezterm = require 'wezterm' +local config = wezterm.config_builder() + +config.color_scheme = 'nord' + +config.hide_tab_bar_if_only_one_tab = true +config.use_fancy_tab_bar = false +config.font_size = 10.0 + +return config \ No newline at end of file