Add Wezterm and fonts
This commit is contained in:
parent
ef4a4914e5
commit
444f4f3a9b
3 changed files with 29 additions and 1 deletions
|
|
@ -38,10 +38,14 @@
|
||||||
# feel free to add your own or remove some of them
|
# feel free to add your own or remove some of them
|
||||||
|
|
||||||
tmux
|
tmux
|
||||||
|
wezterm
|
||||||
|
|
||||||
neofetch
|
neofetch
|
||||||
nnn # terminal file manager
|
nnn # terminal file manager
|
||||||
|
|
||||||
|
nerd-fonts.lilex
|
||||||
|
fira-code
|
||||||
|
|
||||||
# archives
|
# archives
|
||||||
zip
|
zip
|
||||||
xz
|
xz
|
||||||
|
|
@ -165,6 +169,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file.".config/nvim/init.lua".source = ./nvim/init.lua;
|
home.file.".config/nvim/init.lua".source = ./nvim/init.lua;
|
||||||
|
home.file.".wezterm.lua".source = ./wezterm.lua;
|
||||||
|
|
||||||
programs.neovim = {
|
programs.neovim = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
||||||
24
alex/wezterm.lua
Normal file
24
alex/wezterm.lua
Normal file
|
|
@ -0,0 +1,24 @@
|
||||||
|
-- Pull in the wezterm API
|
||||||
|
local wezterm = require 'wezterm'
|
||||||
|
local config = wezterm.config_builder()
|
||||||
|
|
||||||
|
-- This is where you actually apply your config choices
|
||||||
|
config.color_scheme = 'Kimber (base16)'
|
||||||
|
config.color_scheme = 'Color Star (terminal.sexy)'
|
||||||
|
config.color_scheme = 'Catch Me If You Can (terminal.sexy)'
|
||||||
|
config.color_scheme = 'Catppuccin Mocha (Gogh)'
|
||||||
|
config.color_scheme = 'Panda (Gogh)'
|
||||||
|
config.color_scheme = 'zenbones_dark'
|
||||||
|
config.color_scheme = 'Wombat'
|
||||||
|
|
||||||
|
config.window_frame = {
|
||||||
|
font_size = 10
|
||||||
|
}
|
||||||
|
|
||||||
|
config.font_size = 9.5
|
||||||
|
config.hide_tab_bar_if_only_one_tab = true
|
||||||
|
|
||||||
|
config.font = wezterm.font 'Fira Code'
|
||||||
|
config.font = wezterm.font 'Lilex Nerd Font'
|
||||||
|
|
||||||
|
return config
|
||||||
|
|
@ -145,7 +145,6 @@
|
||||||
tldr
|
tldr
|
||||||
unzip
|
unzip
|
||||||
uv
|
uv
|
||||||
wezterm
|
|
||||||
wget
|
wget
|
||||||
zip
|
zip
|
||||||
mullvad-vpn
|
mullvad-vpn
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue