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