Compare commits

..

3 commits

Author SHA1 Message Date
d3ec5c57c6
improve graphical performance 2025-06-26 19:30:03 +08:00
e99cf1e064
install openjdk 17 2025-06-23 23:17:05 +08:00
92f35bf09d
refactor 2025-06-23 23:16:41 +08:00
3 changed files with 26 additions and 21 deletions

View file

@ -14,6 +14,11 @@ local smart_splits = wezterm.plugin.require("https://github.com/mrjones2014/smar
-- Do not check for or show window with update information
config.check_for_updates = false
-- Improve wezterm graphical performance
config.front_end = "OpenGL"
config.max_fps = 144
config.animation_fps = 144
-- Font configuration
config.font = wezterm.font("Fisa Code")
config.font_size = 10.0

View file

@ -7,6 +7,7 @@
[
# Toolchains
gcc
jdk17
python313
# Typesetting

View file

@ -7,28 +7,27 @@
home-manager
# Useful system utilities
tree # directory structure
bc # basic calculator
vim # editor
ranger # console file manager
htop # system monitor
scrot # screenshot
jq # JSON processor
git # version control
nmap # network mapper
xclip # clipboard
ripgrep # searches the current directory for a regex pattern
sshfs # mount filesystems over SSH
feh # image viewer
# HTTP
curl # transfer dato to/from server
wget # download files from web
# Archive
unzip # extract zip archive
p7zip # extract 7z archive
tree
bc
fd
vim
ranger
htop
scrot
jq
git
nmap
xclip
ripgrep
sshfs
feh
curl
wget
unzip
p7zip
];
# List of directories to be symlinked to /run/current-system/sw
pathsToLink = ["/share/zsh"];
};