Add wezterm and mise

This commit is contained in:
Alex 2024-09-24 08:11:29 +02:00
parent 3f8eb4b7a2
commit 2e16dd3c9c
Signed by: l-x
SSH key fingerprint: SHA256:MK3uQVPHEV0Oo2ry/dAqvVK3pAwegKAwSlyfgLd/yQM
3 changed files with 19 additions and 1 deletions

View file

@ -33,6 +33,10 @@ if test -r ~/.asdf/asdf.fish
source ~/.asdf/asdf.fish source ~/.asdf/asdf.fish
end end
if test -x "$(which mise)"
mise activate fish | source
end
if test -x "$(which starship)" if test -x "$(which starship)"
starship init fish | source starship init fish | source
end end
@ -43,4 +47,4 @@ end
if test -x "$(which pueue)" if test -x "$(which pueue)"
pueue completions fish | source pueue completions fish | source
end end

View file

@ -8,6 +8,7 @@
- ~/.config/fish - ~/.config/fish
- ~/.config/git - ~/.config/git
- ~/.config/pacdef - ~/.config/pacdef
- ~/.config/wezterm
- ~/.config/yt-dlp - ~/.config/yt-dlp
- link: - link:
@ -20,6 +21,9 @@
~/.config/pacdef: ~/.config/pacdef:
path: pacdef/* path: pacdef/*
glob: true glob: true
~/.config/wezterm:
path: wezterm/*
glob: true
~/.config/yt-dlp: ~/.config/yt-dlp:
path: yt-dlp/* path: yt-dlp/*
glob: true glob: true

10
wezterm/wezterm.lua Normal file
View file

@ -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