Add Wezterm and fonts
This commit is contained in:
@@ -38,10 +38,14 @@
|
||||
# feel free to add your own or remove some of them
|
||||
|
||||
tmux
|
||||
wezterm
|
||||
|
||||
neofetch
|
||||
nnn # terminal file manager
|
||||
|
||||
nerd-fonts.lilex
|
||||
fira-code
|
||||
|
||||
# archives
|
||||
zip
|
||||
xz
|
||||
@@ -165,6 +169,7 @@
|
||||
};
|
||||
|
||||
home.file.".config/nvim/init.lua".source = ./nvim/init.lua;
|
||||
home.file.".wezterm.lua".source = ./wezterm.lua;
|
||||
|
||||
programs.neovim = {
|
||||
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
|
||||
unzip
|
||||
uv
|
||||
wezterm
|
||||
wget
|
||||
zip
|
||||
mullvad-vpn
|
||||
|
||||
Reference in New Issue
Block a user