diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-01-06 10:00:07 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-01-06 10:00:07 +0900 |
| commit | b6333d7123c4f05677567a4cee4e390c2d42cc8f (patch) | |
| tree | 31b81034e05dc56a521ec1db791f7ed3b8df666d | |
| parent | 15105e179e0cc3131d808fa170a0165893dc7ef8 (diff) | |
| download | dotfiles-b6333d7123c4f05677567a4cee4e390c2d42cc8f.tar.gz dotfiles-b6333d7123c4f05677567a4cee4e390c2d42cc8f.tar.zst dotfiles-b6333d7123c4f05677567a4cee4e390c2d42cc8f.zip | |
alacritty: change font to UDEV Gothic 35 (experimental)
| -rw-r--r-- | .config/alacritty/alacritty.common.toml | 2 | ||||
| -rw-r--r-- | .config/nvim/lua/vimrc/plugins.lua | 2 | ||||
| -rw-r--r-- | flake.lock | 6 | ||||
| -rw-r--r-- | home-manager/modules/common.nix | 8 |
4 files changed, 13 insertions, 5 deletions
diff --git a/.config/alacritty/alacritty.common.toml b/.config/alacritty/alacritty.common.toml index 0a984ea..06d593d 100644 --- a/.config/alacritty/alacritty.common.toml +++ b/.config/alacritty/alacritty.common.toml @@ -5,7 +5,7 @@ transparent_background_colors = true size = 16.0 [font.normal] -family = "Source Han Code JP" +family = "UDEV Gothic 35" [scrolling] history = 0 diff --git a/.config/nvim/lua/vimrc/plugins.lua b/.config/nvim/lua/vimrc/plugins.lua index 9cbe3ae..4f7138b 100644 --- a/.config/nvim/lua/vimrc/plugins.lua +++ b/.config/nvim/lua/vimrc/plugins.lua @@ -20,7 +20,7 @@ return { pattern = 'skkeleton-initialize-pre', callback = function() vim.fn['skkeleton#config']({ - -- Change default markers because they are EAW (East Asian Ambiguous Width) characters. + -- Change default markers, which are classified as EAW Ambigious. markerHenkan = '▿', markerHenkanSelect = '▾', eggLikeNewline = true, @@ -63,11 +63,11 @@ "treefmt-nix": "treefmt-nix" }, "locked": { - "lastModified": 1766338314, - "narHash": "sha256-gvEXPRWcFJEjcB/jnTTz+YsXvUneCzfE5tOfiWdmUeU=", + "lastModified": 1767660612, + "narHash": "sha256-GwH1+xxLiapcL8u2DDEzhbERFuesqVf18ogJj1LyBM4=", "owner": "nsfisis", "repo": "nur-packages", - "rev": "d62e204cdd3625280e16fe4e02526a335d87597e", + "rev": "6d22f1d329831ac478fa58e661df2033768e71b9", "type": "github" }, "original": { diff --git a/home-manager/modules/common.nix b/home-manager/modules/common.nix index ebf57e9..57f7aee 100644 --- a/home-manager/modules/common.nix +++ b/home-manager/modules/common.nix @@ -103,6 +103,14 @@ in ".config/vim/vimrc".source = ../../.config/vim/vimrc; ".local/share/fonts/SourceHanCodeJP.ttc".source = "${nurpkgs.source-han-code-jp}/share/fonts/SourceHanCodeJP.ttc"; + ".local/share/fonts/UDEVGothic35-Regular.ttf".source = + "${nurpkgs.udev-gothic}/share/fonts/UDEVGothic35-Regular.ttf"; + ".local/share/fonts/UDEVGothic35-Bold.ttf".source = + "${nurpkgs.udev-gothic}/share/fonts/UDEVGothic35-Bold.ttf"; + ".local/share/fonts/UDEVGothic35-Italic.ttf".source = + "${nurpkgs.udev-gothic}/share/fonts/UDEVGothic35-Italic.ttf"; + ".local/share/fonts/UDEVGothic35-BoldItalic.ttf".source = + "${nurpkgs.udev-gothic}/share/fonts/UDEVGothic35-BoldItalic.ttf"; ".zshrc".source = ../config/zsh/.zshrc; "bin/__claude-code-notify".source = ../../bin/__claude-code-notify; "bin/__claude-code-statusline".source = ../../bin/__claude-code-statusline; |
