Add wezterm and mise
This commit is contained in:
parent
3f8eb4b7a2
commit
2e16dd3c9c
3 changed files with 19 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
10
wezterm/wezterm.lua
Normal file
10
wezterm/wezterm.lua
Normal 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
|
Loading…
Reference in a new issue